diff options
author | Alan Pearce | 2019-06-17 11:58:00 +0200 |
---|---|---|
committer | Alan Pearce | 2019-06-17 11:58:00 +0200 |
commit | ec9c6bce04349b9c766c0bbbf72eda6669a2645e (patch) | |
tree | c186c20831d8ea9c89e4764eb5d7498bf9118a21 | |
parent | 3941abeb18f6f582bad1bf2f51deeb21cf829fb5 (diff) | |
download | nixfiles-ec9c6bce04349b9c766c0bbbf72eda6669a2645e.tar.lz nixfiles-ec9c6bce04349b9c766c0bbbf72eda6669a2645e.tar.zst nixfiles-ec9c6bce04349b9c766c0bbbf72eda6669a2645e.zip |
Emacs: fix evil/evil-collection pre-init
-rw-r--r-- | emacs/.emacs.d/main.el | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/emacs/.emacs.d/main.el b/emacs/.emacs.d/main.el index d6971331..5cb70525 100644 --- a/emacs/.emacs.d/main.el +++ b/emacs/.emacs.d/main.el @@ -14,6 +14,10 @@ (use-package crux :custom ((crux-reopen-as-root-mode t))) +;;; evil pre-init +(custom-set-variables '(evil-want-integration t) + '(evil-want-keybinding nil)) + ;;; Styles ;; I prefer an always-visible cursor. Feels less distracting. @@ -164,8 +168,6 @@ With two prefix arguments, write out the day and month name." (use-package evil :demand t - :init (custom-set-variables '(evil-want-integration t) - '(evil-want-keybinding nil)) :after (undo-tree) :custom ((evil-shift-width 2) (evil-mode-line-format '(before . mode-line-front-space))) |