diff --git a/readme.org b/readme.org index 5748b53..c777ab7 100644 --- a/readme.org +++ b/readme.org @@ -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))