diff options
author | Matthew Lemon <y@yulqen.org> | 2024-07-08 13:58:39 +0100 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-07-08 13:58:39 +0100 |
commit | abb2031d2e3326d8890bb113d4ee53490239c2c1 (patch) | |
tree | ec7db6321d01b251d4f5e607ce477bc788c3e678 | |
parent | 2d094589c1f3c1a173a5d897d97a05cb07623a15 (diff) |
Changes prefix for lsp key commands
-rw-r--r-- | init.el | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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) |