Update README.md
This commit is contained in:
10
README.md
10
README.md
@@ -568,8 +568,10 @@ Configuring Vim keybindings in Emacs can greatly enhance your editing efficiency
|
|||||||
|
|
||||||
``` emacs-lisp
|
``` emacs-lisp
|
||||||
;; Required by evil-collection
|
;; Required by evil-collection
|
||||||
(setq evil-want-integration t)
|
(eval-when-compile
|
||||||
(setq evil-want-keybinding nil)
|
;; It has to be defined before evil
|
||||||
|
(setq evil-want-integration t)
|
||||||
|
(setq evil-want-keybinding nil))
|
||||||
|
|
||||||
;; Uncomment the following if you are using undo-fu
|
;; Uncomment the following if you are using undo-fu
|
||||||
;; (setq evil-undo-system 'undo-fu)
|
;; (setq evil-undo-system 'undo-fu)
|
||||||
@@ -581,6 +583,10 @@ Configuring Vim keybindings in Emacs can greatly enhance your editing efficiency
|
|||||||
:commands (evil-mode evil-define-key)
|
:commands (evil-mode evil-define-key)
|
||||||
:hook (after-init . evil-mode))
|
:hook (after-init . evil-mode))
|
||||||
|
|
||||||
|
(eval-when-compile
|
||||||
|
;; It has to be defined before evil-colllection
|
||||||
|
(setq evil-collection-setup-minibuffer t))
|
||||||
|
|
||||||
(use-package evil-collection
|
(use-package evil-collection
|
||||||
:after evil
|
:after evil
|
||||||
:ensure t
|
:ensure t
|
||||||
|
|||||||
Reference in New Issue
Block a user