From 0be609bd24f0886cc5c3950c42b0c5483aba0721 Mon Sep 17 00:00:00 2001 From: James Cherti <60946298+jamescherti@users.noreply.github.com> Date: Sun, 9 Mar 2025 13:19:14 -0400 Subject: [PATCH] Update README.md --- README.md | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 5a5f0d3..ac309e1 100644 --- a/README.md +++ b/README.md @@ -538,15 +538,14 @@ To install and configure these packages, add the following to `~/.emacs.d/post-i Configuring Vim keybindings in Emacs can greatly enhance your editing efficiency if you are accustomed to Vim's modal editing style. Add the following to `~/.emacs.d/post-init.el` to set up Evil mode: ``` emacs-lisp -;; Vim emulation -(eval-when-compile - ;; Required by evil-collection - (setq evil-want-integration t) - (setq evil-want-keybinding nil)) +;; 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) +;; Vim emulation (use-package evil :ensure t :defer t