Update README.md
This commit is contained in:
13
README.md
13
README.md
@@ -257,8 +257,8 @@ Add the following to `~/.emacs.d/post-init.el` to set up Vertico, Consult, and E
|
|||||||
(window-parameters (mode-line-format . none)))))
|
(window-parameters (mode-line-format . none)))))
|
||||||
|
|
||||||
(use-package embark-consult
|
(use-package embark-consult
|
||||||
|
:after (consult embark)
|
||||||
:ensure t
|
:ensure t
|
||||||
:defer t
|
|
||||||
:hook
|
:hook
|
||||||
(embark-collect-mode . consult-preview-at-point-mode))
|
(embark-collect-mode . consult-preview-at-point-mode))
|
||||||
|
|
||||||
@@ -349,13 +349,15 @@ Add the following to `~/.emacs.d/post-init.el` to set up Vertico, Consult, and E
|
|||||||
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:
|
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
|
``` emacs-lisp
|
||||||
|
;; evil-want-keybinding must be declared before Evil and Evil Collection
|
||||||
|
(setq evil-want-keybinding nil)
|
||||||
|
|
||||||
(use-package evil
|
(use-package evil
|
||||||
:ensure t
|
:ensure t
|
||||||
:custom
|
|
||||||
(evil-undo-system 'undo-fu)
|
|
||||||
(evil-want-integration t)
|
|
||||||
:init
|
:init
|
||||||
(setq-default evil-want-keybinding nil)
|
(setq evil-undo-system 'undo-fu)
|
||||||
|
(setq evil-want-integration t)
|
||||||
|
(setq evil-want-keybinding nil)
|
||||||
:config
|
:config
|
||||||
(evil-select-search-module 'evil-search-module 'evil-search)
|
(evil-select-search-module 'evil-search-module 'evil-search)
|
||||||
(evil-mode 1))
|
(evil-mode 1))
|
||||||
@@ -363,7 +365,6 @@ Configuring Vim keybindings in Emacs can greatly enhance your editing efficiency
|
|||||||
(use-package evil-collection
|
(use-package evil-collection
|
||||||
:after evil
|
:after evil
|
||||||
:ensure t
|
:ensure t
|
||||||
:after evil
|
|
||||||
:config
|
:config
|
||||||
(evil-collection-init))
|
(evil-collection-init))
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user