summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeonardo Santiago <[email protected]>2025-03-16 13:45:48 -0300
committerLeonardo Santiago <[email protected]>2025-03-16 13:46:44 -0300
commit45e466e3abdfaa41a7c1d5d3df9e033e3bfb4b17 (patch)
tree6e6e266cd1a6ab3ec18142566fc1acc119b2ab92
parent8acc3952eb2362f5211849ad031f866b372856b2 (diff)
feat(emacs): add bindings for eglot commands
-rw-r--r--modules/emacs/README.org4
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/emacs/README.org b/modules/emacs/README.org
index d9d081d..210b00b 100644
--- a/modules/emacs/README.org
+++ b/modules/emacs/README.org
@@ -215,6 +215,9 @@ Language server support. Already comes installed but used to configure additiona
#+begin_src emacs-lisp :tangle yes
(use-package eglot
:ensure nil
+ :bind (("C-c a" . eglot-code-actions)
+ ("C-c r" . eglot-rename)
+ )
:config (add-to-list 'eglot-server-programs '(nix-mode . ("nil"))))
(use-package eglot-booster
@@ -316,7 +319,6 @@ Try to use the package.
:ensure nil
:hook (org-mode . org-indent-mode)
:diminish org-indent-mode
- :bind ("C-c a" . org-agenda)
:config
(add-to-list 'org-src-lang-modes '("rust" . rust-ts))
(add-to-list 'org-src-lang-modes '("python" . python-ts))