From 9e898e2100d1003ea17dfae0f70ab9aaa7c08380 Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Sat, 21 Dec 2024 20:53:52 +0100 Subject: [PATCH] Do not require lsp-mode to be installed anymore eglot should do the trick for most of my needs, so no need to force-install lsp-mode. --- init.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/init.el b/init.el index 55a5d8c..442d2ad 100644 --- a/init.el +++ b/init.el @@ -1400,7 +1400,7 @@ Note that this workaround is incomplete, as explained in this comment." ;; See https://andreyor.st/posts/2023-09-09-migrating-from-lsp-mode-to-eglot/ ;; for where some of the configuration for `lsp-mode' is coming from. (use-package lsp-mode - :ensure t + :ensure nil :init (setq lsp-keymap-prefix "C-c C-l" lsp-session-file (expand-file-name ".lsp-session" emacs-d-userdata) lsp-use-plists t ; not quite sure whether this is a good @@ -1416,7 +1416,7 @@ Note that this workaround is incomplete, as explained in this comment." :commands (lsp lsp-deferred)) (use-package lsp-ui - :ensure t + :ensure nil :commands (lsp-ui-mode)) (use-package magit