From 0c990bc639d14a9194440e4040b0fd8457752ba3 Mon Sep 17 00:00:00 2001 From: James Nguyen Date: Thu, 28 Dec 2017 20:56:36 -0800 Subject: [PATCH] Add another install snippet for the lazy :) --- readme.org | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/readme.org b/readme.org index c1d6597..5748b53 100644 --- a/readme.org +++ b/readme.org @@ -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