Added magit

This commit is contained in:
Klotz
2025-09-02 16:54:21 +02:00
parent 784f8a66a1
commit e524c4a816

View File

@ -126,6 +126,7 @@
"fb" '(counsel-switch-buffer :which-key "find buffers") "fb" '(counsel-switch-buffer :which-key "find buffers")
"gf" '(counsel-ag :which-key "grep") "gf" '(counsel-ag :which-key "grep")
"gF" '(counsel-git-grep :which-key "git grep") "gF" '(counsel-git-grep :which-key "git grep")
"gg" '(magit-status :whichkey "magit")
"t" '(:ignore t :which-key "toggles") "t" '(:ignore t :which-key "toggles")
"tt" '(counsel-load-theme :which-key "choose theme") "tt" '(counsel-load-theme :which-key "choose theme")
"p" '(projectile-command-map :which-key "projectile") "p" '(projectile-command-map :which-key "projectile")
@ -175,3 +176,7 @@
(use-package counsel-projectile (use-package counsel-projectile
:config (counsel-projectile-mode)) :config (counsel-projectile-mode))
(use-package magit
:custom
(magit-display-buffer-function #'magit-display-buffer-same-window-except-diff-v1))