Require evil-magit at the right time

...although it still seems to not be working? TODO
This commit is contained in:
Jeremy Dormitzer 2020-05-26 21:45:38 -04:00
parent 6268855336
commit 8ab1620e52

View File

@ -336,9 +336,7 @@ Magit is objectively the best Git interface.
:commands (magit-status
magit-blame
magit-find-file
magit-name-local-branch)
:config
(require 'evil-magit))
magit-name-local-branch))
#+END_SRC
#+BEGIN_SRC emacs-lisp
@ -375,6 +373,9 @@ Evil keybindings for magit!
#+BEGIN_SRC emacs-lisp
(use-package evil-magit
:after (evil magit forge)
:config
(with-eval-after-load 'magit
(require 'evil-magit))
:general
('normal magit-mode-map "SPC" leader-map))
#+END_SRC