Compare commits

...

3 Commits

Author SHA1 Message Date
kj
256353e949 Add Flycheck popup tips
Display Flycheck errors and warnings as popup tips for better visibility.
2025-09-28 22:28:13 -03:00
kj
72d6412a8f Add C-x C-p binding for project-find-file 2025-09-28 22:27:44 -03:00
kj
8d7252eabf Load custom-file after Elpaca init
Ensures user customizations are applied after Elpaca has finished
initializing, preventing potential overrides or incorrect
application of settings.
2025-09-28 22:27:25 -03:00
3 changed files with 5 additions and 0 deletions

View File

@@ -22,6 +22,7 @@
;; Custom configs file
(setq custom-file (concat user-emacs-directory ".custom.el"))
(add-hook 'elpaca-after-init-hook (lambda () (load custom-file 'noerror)))
;; Garbage Collector Magic Hack
(use-package gcmh

View File

@@ -105,5 +105,8 @@
:init
(global-flycheck-eglot-mode 1))
(use-package flycheck-popup-tip
:hook (flycheck-mode . flycheck-popup-tip-mode))
(provide 'init-lsp)
;;; init-lsp.el ends here

View File

@@ -13,6 +13,7 @@
;; Reemplazo para counsel
(use-package consult
:bind (("C-x p" . project-find-file)
("C-x C-p" . project-find-file)
("C-S-s" . consult-line)
("C-c r g" . consult-ripgrep)
("C-S-r" . consult-ripgrep)