From 05311629e4cc411ab9b25d197af53b28d111380c Mon Sep 17 00:00:00 2001 From: Jeremy Baxter Date: Thu, 11 Apr 2024 08:58:37 +1200 Subject: [PATCH] emacs: bind `C-c b' to magit-blame --- .emacs.d/init.el | 1 + 1 file changed, 1 insertion(+) diff --git a/.emacs.d/init.el b/.emacs.d/init.el index f3d6410..37bf0c1 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -21,6 +21,7 @@ ;; key binds (global-set-key (kbd "C-`") 'other-window) +(global-set-key (kbd "C-c b") 'magit-blame) (global-set-key (kbd "C-c c") 'compile) (global-set-key (kbd "C-c r") 'recompile)