Update README.md

This commit is contained in:
James Cherti
2025-03-14 14:10:18 -04:00
parent 8b4321b3d6
commit 1cad028382

View File

@@ -568,8 +568,10 @@ Configuring Vim keybindings in Emacs can greatly enhance your editing efficiency
``` emacs-lisp
;; Required by evil-collection
(eval-when-compile
;; It has to be defined before evil
(setq evil-want-integration t)
(setq evil-want-keybinding nil)
(setq evil-want-keybinding nil))
;; Uncomment the following if you are using 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)
: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
:after evil
:ensure t