Add another install snippet for the lazy :)

This commit is contained in:
James Nguyen 2017-12-28 20:56:36 -08:00 committed by James N
parent 016247132b
commit 0c990bc639
1 changed files with 16 additions and 0 deletions

View File

@ -72,6 +72,22 @@ because many users find it confusing.
: :custom (evil-collection-setup-minibuffer t)
: :init (evil-collection-init))
Here's another full TLDR ~use-package~ example.
#+begin_src emacs-lisp :tangle yes
(use-package evil
:ensure t
:custom
(evil-want-integration nil)
:config
(evil-mode 1))
(use-package evil-collection
:after evil
:ensure t
:config
(evil-collection-init))
#+end_src
** Guidelines