Simplify purpose-mode configuration

This commit is contained in:
Maciej 2018-09-09 13:53:18 +03:00
parent 787943df9e
commit 271d87f6a6
Signed by: maciej
GPG key ID: 41D62D42D3B0D765
13 changed files with 76 additions and 107 deletions

View file

@ -1,9 +1,7 @@
;; Magit
(evil-leader/set-key
"gs" 'magit-status
"gco" 'magit-checkout
;; TODO: Connect these two into one key
"gb" 'magit-blame
"gq" 'magit-blame-quit)
; Magit
(require 'magit)
;; (require 'evil-magit)
(global-set-key (kbd "<f5> c") 'magit-checkout)
(global-set-key (kbd "<f5> b") 'magit-blame)
(define-key magit-blame-mode-map (kbd "<f5> b") 'magit-blame-quit)
(global-set-key (kbd "<f5> g") 'magit-status)