From 13414a89119210a863ed96a5bea22cd195cb2490 Mon Sep 17 00:00:00 2001 From: James Cherti <60946298+jamescherti@users.noreply.github.com> Date: Sat, 3 Aug 2024 15:17:17 -0400 Subject: [PATCH] Update README.md --- README.md | 8 -------- 1 file changed, 8 deletions(-) diff --git a/README.md b/README.md index 89b661f..fbdffb7 100644 --- a/README.md +++ b/README.md @@ -77,18 +77,10 @@ The minimal-emacs.d init files support additional customization files that are l 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` set up Evil along with some additional packages for undo functionality: ``` emacs-lisp -(use-package undo-fu - :ensure t) - -(use-package undo-fu-session - :ensure t) - (use-package evil :ensure t - :after undo-fu :custom (evil-want-keybinding nil) - (evil-undo-system 'undo-fu) :config (evil-select-search-module 'evil-search-module 'evil-search) (evil-mode 1))