diff options
Diffstat (limited to '')
-rw-r--r-- | init.org | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/init.org b/init.org index 043a105..f687372 100644 --- a/init.org +++ b/init.org @@ -1044,7 +1044,10 @@ After experimenting with [[https://emacs-lsp.github.io/lsp-mode/][lsp-mode]] and For languages where I want to use LSP, I need to add ~:hook (nix-mode . englot-ensure)~ in the ~use-package~ definition for the language. #+begin_src emacs-lisp -(use-package eglot) +(use-package eglot + :bind (:map eglot-mode-map + ("C-c l a" . eglot-code-actions) + ("C-c l r" . eglot-rename))) #+end_src *** tree-sitter |