aboutsummaryrefslogtreecommitdiff
path: root/Emacs/.config/emacs
diff options
context:
space:
mode:
Diffstat (limited to 'Emacs/.config/emacs')
-rw-r--r--Emacs/.config/emacs/config.org8
1 files changed, 6 insertions, 2 deletions
diff --git a/Emacs/.config/emacs/config.org b/Emacs/.config/emacs/config.org
index 2251ea0..b1c45ee 100644
--- a/Emacs/.config/emacs/config.org
+++ b/Emacs/.config/emacs/config.org
@@ -1989,14 +1989,18 @@ don't need to write everything myself.
("magit-log:.*"
(display-buffer-same-window))
:general
- (leader "g" '(magit-status :which-key "Magit"))
+ (leader
+ "g" '(magit-status :which-key "Magit"))
+ (code-leader
+ "b" #'magit-blame)
:auto-insert
(("COMMIT_EDITMSG" . "Commit skeleton")
""
"(" (read-string "Enter feature/module: ") ")"
(read-string "Enter simple description: ") "\n\n")
:init
- (setq vc-follow-symlinks t)
+ (setq vc-follow-symlinks t
+ magit-blame-echo-style 'lines)
:config
(with-eval-after-load "evil"
(evil-set-initial-state 'magit-status-mode 'motion))