summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Lemon <y@yulqen.org>2024-07-08 13:58:39 +0100
committerMatthew Lemon <y@yulqen.org>2024-07-08 13:58:39 +0100
commitabb2031d2e3326d8890bb113d4ee53490239c2c1 (patch)
treeec7db6321d01b251d4f5e607ce477bc788c3e678
parent2d094589c1f3c1a173a5d897d97a05cb07623a15 (diff)
Changes prefix for lsp key commands
-rw-r--r--init.el4
1 files changed, 4 insertions, 0 deletions
diff --git a/init.el b/init.el
index 7c3c6d0..2875971 100644
--- a/init.el
+++ b/init.el
@@ -755,6 +755,10 @@ Restart works only on graphic display."
;; Enable LSP support by default in programming buffers
(add-hook 'prog-mode-hook #'eglot-ensure)
+;; Change lsp prefix because at the moment it is "s-l"
+;; https://emacs.stackexchange.com/questions/55199/what-are-these-prefix-commands-that-start-with-s-l
+(setq lsp-keymap-prefix "C-x @ s-l")
+
;; Enabled inline static analysis
(add-hook 'prog-mode-hook #'flymake-mode)