diff options
author | Guangxiong Lin <[email protected]> | 2022-04-19 22:59:58 +0800 |
---|---|---|
committer | Guangxiong Lin <[email protected]> | 2022-04-19 22:59:58 +0800 |
commit | 86a5b55e66648f79a835e3ebd295483359b9a4a8 (patch) | |
tree | 28c51084c92b2b685f4d2034f7f8167daeb7adb0 /.emacs.d/lisp/init-evil.el | |
parent | 8157478f9ccaef0dd823ac8ad1bf431bd86d9a71 (diff) | |
download | dotfiles-86a5b55e66648f79a835e3ebd295483359b9a4a8.tar.gz dotfiles-86a5b55e66648f79a835e3ebd295483359b9a4a8.tar.bz2 dotfiles-86a5b55e66648f79a835e3ebd295483359b9a4a8.zip |
Add hook to after-init-hook by order
I cannot use emacs without evil-mode ... Load it first to avoid any
issue occurs during initialization.
Diffstat (limited to '.emacs.d/lisp/init-evil.el')
-rw-r--r-- | .emacs.d/lisp/init-evil.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.emacs.d/lisp/init-evil.el b/.emacs.d/lisp/init-evil.el index 0539784..78c5bfc 100644 --- a/.emacs.d/lisp/init-evil.el +++ b/.emacs.d/lisp/init-evil.el @@ -1,5 +1,5 @@ (when (gx/maybe-require-package 'evil) - (add-hook 'after-init-hook (lambda () (evil-mode 1)))) + (add-hook 'after-init-hook (lambda () (evil-mode 1)) 'append)) (setq evil-want-integration t evil-want-C-u-scroll t |