First version of use-package
This commit is contained in:
parent
42ff73fdd7
commit
fca83b0b97
15 changed files with 214 additions and 197 deletions
14
04magit.el
14
04magit.el
|
|
@ -1,8 +1,8 @@
|
|||
;;; Magit
|
||||
|
||||
(require '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)
|
||||
(use-package magit
|
||||
:ensure t
|
||||
:bind ("<f5> c" . magit-checkout)
|
||||
("<f5> b" . magit-blame)
|
||||
("<f5> g" . magit-status)
|
||||
(:map magit-blame-mode-map
|
||||
("<f5> b" . 'magit-blame-quit)))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue