commit cc86067135c92367b0fd35ed5858b1665e0ce13c
parent 73b2be4772b8dfdda8ad0432e3a81a1c58c7c438
Author: Cem Keylan <cem@ckyln.com>
Date: Tue, 3 Mar 2020 15:26:04 +0300
split evil-magit and ensure it exists
Diffstat:
1 file changed, 7 insertions(+), 3 deletions(-)
diff --git a/init.org b/init.org
@@ -228,10 +228,14 @@ along with it.
:ensure t
:config
(global-set-key (kbd "C-x g") 'magit-status))
+#+END_SRC
+
+*** evil-magit
+
+#+BEGIN_SRC emacs-lisp
(use-package evil-magit
- :ensure evil
- :ensure magit
- :after magit
+ :ensure t
+ :after (evil magit)
:config (evil-magit-init))
#+END_SRC