diff options
author | Thomas Voss <mail@thomasvoss.com> | 2023-08-18 01:15:45 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2023-08-18 01:15:45 +0200 |
commit | 9f72f040fbb2375ce484daf17a25feee40e530cc (patch) | |
tree | 45b1dcdb2121d9ac5f208fb94d83d1e8c18c2fd9 /.config | |
parent | 779e3a4faeba6f43e7430131afc2898812a0a782 (diff) |
emacs: Don’t automagically start LSP
Diffstat (limited to '.config')
-rw-r--r-- | .config/emacs/config.org | 5 |
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 |