mirror of
https://github.com/correl/dotfiles.git
synced 2024-12-18 11:06:17 +00:00
[emacs] fix magit-blame-mode
Wrap magit-blame in its own use-package declaration so it gets loaded properly when magit-blame-mode is run.
This commit is contained in:
parent
3f003de640
commit
211f67352f
1 changed files with 5 additions and 2 deletions
|
@ -90,8 +90,7 @@
|
|||
:commands (magit-init
|
||||
magit-status
|
||||
magit-diff
|
||||
magit-commit
|
||||
magit-blame-mode)
|
||||
magit-commit)
|
||||
:config
|
||||
(progn
|
||||
(defadvice magit-status (around magit-fullscreen activate)
|
||||
|
@ -102,6 +101,10 @@
|
|||
(defadvice magit-quit-window (around magit-restore-screen activate)
|
||||
ad-do-it
|
||||
(jump-to-register :magit-fullscreen))))
|
||||
|
||||
(use-package magit-blame
|
||||
:ensure magit
|
||||
:commands (magit-blame-mode))
|
||||
#+END_SRC
|
||||
** Org
|
||||
*** Modules
|
||||
|
|
Loading…
Reference in a new issue