summaryrefslogtreecommitdiff
path: root/emacs
diff options
context:
space:
mode:
authorGrégoire Duchêne <gduchene@awhk.org>2021-05-29 16:33:20 +0100
committerGrégoire Duchêne <gduchene@awhk.org>2021-05-29 16:33:20 +0100
commit85d34179affb18de150b99c70e91ef0787e85517 (patch)
treeb6831a702cc65522e23fe4836e40a08fa07f287c /emacs
parentcb4d0180e3d4898d63b99b085ad5fa8766be02b2 (diff)
emacs: Use Evil with Dired and Ibuffer
Diffstat (limited to 'emacs')
-rw-r--r--emacs/init.el6
1 files changed, 4 insertions, 2 deletions
diff --git a/emacs/init.el b/emacs/init.el
index 32d1b55..dc54c3c 100644
--- a/emacs/init.el
+++ b/emacs/init.el
@@ -83,8 +83,10 @@
:ensure t)
(use-package evil-collection
- :config (evil-collection-init 'magit)
- :after evil
+ :config
+ (evil-collection-init '(dired ibuffer magit))
+ (diminish 'evil-collection-unimpaired-mode)
+ :after (evil diminish)
:ensure t)
(use-package go-mode