Update README.md
This commit is contained in:
17
README.md
17
README.md
@@ -539,18 +539,19 @@ Configuring Vim keybindings in Emacs can greatly enhance your editing efficiency
|
|||||||
|
|
||||||
``` emacs-lisp
|
``` emacs-lisp
|
||||||
;; Vim emulation
|
;; Vim emulation
|
||||||
|
(eval-when-compile
|
||||||
|
;; Required by evil-collection
|
||||||
|
(setq evil-want-integration t)
|
||||||
|
(setq evil-want-keybinding nil))
|
||||||
|
|
||||||
|
;; Uncomment the following if you are using undo-fu
|
||||||
|
;; (setq evil-undo-system 'undo-fu)
|
||||||
|
|
||||||
(use-package evil
|
(use-package evil
|
||||||
:ensure t
|
:ensure t
|
||||||
:defer t
|
:defer t
|
||||||
:commands (evil-mode evil-define-key)
|
:commands (evil-mode evil-define-key)
|
||||||
:hook (after-init . evil-mode)
|
:hook (after-init . evil-mode))
|
||||||
:init
|
|
||||||
;; Uncomment the following if you are using undo-fu
|
|
||||||
;; (setq evil-undo-system 'undo-fu)
|
|
||||||
|
|
||||||
;; Required by evil-collection
|
|
||||||
(setq evil-want-integration t)
|
|
||||||
(setq evil-want-keybinding nil))
|
|
||||||
|
|
||||||
(use-package evil-collection
|
(use-package evil-collection
|
||||||
:after evil
|
:after evil
|
||||||
|
|||||||
Reference in New Issue
Block a user