Add missing setq in `use-package` snippet

correctly set `evil-want-integration` to `nil`
This commit is contained in:
Shahin Azad 2018-01-13 13:50:49 +03:30 committed by James N
parent c7654a3a77
commit f94e3657de
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@ Here's another full TLDR ~use-package~ example.
(use-package evil
:ensure t
:init
(evil-want-integration nil)
(setq evil-want-integration nil)
:config
(evil-mode 1))