Tweak readme

This commit is contained in:
James Nguyen 2018-01-06 11:20:20 -08:00 committed by James N
parent a591f9ecac
commit 268f8c333d
1 changed files with 4 additions and 4 deletions

View File

@ -41,15 +41,15 @@ Or clone / download this repository and modify your ~load-path~:
- Register the bindings, either all at once:
: evil-collection assumes ~evil-integration~ is disabled when it loads.
: Make sure to set ~evil-want-integration~ to nil before loading evil-collection.
: evil-collection assumes ~evil-integration~ is disabled by the time it loads.
: Make sure to set ~evil-want-integration~ to nil before loading evil and evil-collection.
For example:
#+begin_src emacs-lisp :tangle yes
(use-package evil
:ensure t
:custom
:init
(evil-want-integration nil))
#+end_src
@ -77,7 +77,7 @@ Here's another full TLDR ~use-package~ example.
#+begin_src emacs-lisp :tangle yes
(use-package evil
:ensure t
:custom
:init
(evil-want-integration nil)
:config
(evil-mode 1))