add evil-magit
This commit is contained in:
parent
1f3e550e52
commit
d882eff18c
8
conf.org
8
conf.org
|
@ -1646,6 +1646,12 @@ I like being evil. All package and custom bindings go here.
|
||||||
"e" 'org-agenda-set-effort
|
"e" 'org-agenda-set-effort
|
||||||
"ce" nil))
|
"ce" nil))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
*** evil-magit
|
||||||
|
#+BEGIN_SRC emacs-lisp
|
||||||
|
(use-package evil-magit
|
||||||
|
:ensure t
|
||||||
|
:after (evil magit))
|
||||||
|
#+END_SRC
|
||||||
*** collection
|
*** collection
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(use-package evil-collection
|
(use-package evil-collection
|
||||||
|
@ -1653,7 +1659,7 @@ I like being evil. All package and custom bindings go here.
|
||||||
:after evil
|
:after evil
|
||||||
:init
|
:init
|
||||||
(setq evil-collection-modes-list '(dired flycheck company which-key
|
(setq evil-collection-modes-list '(dired flycheck company which-key
|
||||||
helm minibuffer mu4e ediff magit))
|
helm minibuffer mu4e ediff))
|
||||||
(setq evil-collection-setup-minibuffer t)
|
(setq evil-collection-setup-minibuffer t)
|
||||||
:config
|
:config
|
||||||
(evil-collection-init))
|
(evil-collection-init))
|
||||||
|
|
Loading…
Reference in New Issue