Update README.md

This commit is contained in:
James Cherti
2024-08-05 00:49:56 -04:00
parent 975fc69c44
commit 6c2bc0dae3

View File

@@ -108,6 +108,7 @@ Configuring Vim keybindings in Emacs can greatly enhance your editing efficiency
(use-package evil (use-package evil
:ensure t :ensure t
:custom :custom
(evil-undo-system 'undo-fu)
(evil-want-keybinding nil) (evil-want-keybinding nil)
(evil-want-integration t) (evil-want-integration t)
:config :config
@@ -119,6 +120,15 @@ Configuring Vim keybindings in Emacs can greatly enhance your editing efficiency
:after evil :after evil
:config :config
(evil-collection-init)) (evil-collection-init))
(use-package undo-fu
:ensure t)
(use-package undo-fu-session
:ensure t
:config
(undo-fu-session-global-mode))
``` ```
You can also use the [vim-tab-bar](https://github.com/jamescherti/vim-tab-bar.el) Emacs package to `~/.emacs.d/post-init.el` to give the built-in Emacs tab-bar a style similar to Vim's tabbed browsing interface: You can also use the [vim-tab-bar](https://github.com/jamescherti/vim-tab-bar.el) Emacs package to `~/.emacs.d/post-init.el` to give the built-in Emacs tab-bar a style similar to Vim's tabbed browsing interface: