summaryrefslogtreecommitdiff
path: root/.config/emacs/config.org
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2023-08-18 01:15:45 +0200
committerThomas Voss <mail@thomasvoss.com> 2023-08-18 01:15:45 +0200
commit9f72f040fbb2375ce484daf17a25feee40e530cc (patch)
tree45b1dcdb2121d9ac5f208fb94d83d1e8c18c2fd9 /.config/emacs/config.org
parent779e3a4faeba6f43e7430131afc2898812a0a782 (diff)
emacs: Don’t automagically start LSP
Diffstat (limited to '.config/emacs/config.org')
-rw-r--r--.config/emacs/config.org5
1 files changed, 2 insertions, 3 deletions
diff --git a/.config/emacs/config.org b/.config/emacs/config.org
index 96f0614..3a27717 100644
--- a/.config/emacs/config.org
+++ b/.config/emacs/config.org
@@ -693,12 +693,11 @@ why they won’t just move on from it I have no idea. I’ll just disable snipp
#+BEGIN_SRC elisp
(use-package lsp-mode
+ :commands (lsp lsp-deferred)
:custom
(lsp-enable-snippet nil)
:init
- (setq lsp-keymap-prefix "C-c l")
- :hook ((rust-ts-mode . lsp-deferred))
- :commands (lsp lsp-deferred))
+ (setq lsp-keymap-prefix "C-c l"))
#+END_SRC