Update README.md

This commit is contained in:
James Cherti
2024-08-03 15:17:17 -04:00
parent b7138c1368
commit 13414a8911

View File

@@ -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))