diff options
author | Raúl Benencia <id@rbenencia.name> | 2024-10-12 09:27:21 -0700 |
---|---|---|
committer | Raúl Benencia <id@rbenencia.name> | 2024-10-12 09:38:29 -0700 |
commit | 4b327fe7fd1bff0385117d923e0072f9f72049a7 (patch) | |
tree | cf88d8cb6abd2669616f0aa19155affbb0e1fb87 /.emacs.d | |
parent | 587a47af49f7cb590d02273e5f76e7fa92799805 (diff) |
emacs: add magit to project-switch-commands
Diffstat (limited to '.emacs.d')
-rw-r--r-- | .emacs.d/rul-init.d/magit.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.emacs.d/rul-init.d/magit.el b/.emacs.d/rul-init.d/magit.el index 20ba99d..11370e5 100644 --- a/.emacs.d/rul-init.d/magit.el +++ b/.emacs.d/rul-init.d/magit.el @@ -2,7 +2,6 @@ (use-package magit :ensure t - :defer t :bind (("C-c g s" . magit-status) ("C-c g b" . magit-blame)) @@ -15,3 +14,5 @@ (window-configuration-to-register :magit-fullscreen) ad-do-it (delete-other-windows)))) + +(add-to-list 'project-switch-commands '(magit-project-status "Magit" "m")) |