Add eglot-booster.

This commit is contained in:
KJ 2024-04-18 05:25:55 -04:00
parent ff85e08450
commit bdaef62ba5
1 changed files with 11 additions and 0 deletions

View File

@ -54,6 +54,17 @@
;; (add-hook 'eglot--managed-mode-hook (lambda () (flymake-mode -1)))
)
;; Mejorar la velocidad de eglot (un binario en rust )
(use-package eglot-booster
:ensure (:host github :repo "jdtsmith/eglot-booster")
:after eglot
:config
;;
(if (executable-find "emacs-lsp-booster")
(eglot-booster-mode)
(message "No está instalado emacs-lsp-booster. Eglot se usará de modo normal."))
)
;; Emmet (mientras veo como hacer funcionar emmet-ls)
(use-package emmet-mode
:defer t