From d398e90f4c80ddaf7c086e7543d0ef5ab1bf9d6d Mon Sep 17 00:00:00 2001 From: Marc Pohling Date: Wed, 4 Dec 2019 13:22:25 +0100 Subject: [PATCH] added evil mode --- init.org | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/init.org b/init.org index 718179c..521539b 100644 --- a/init.org +++ b/init.org @@ -7,7 +7,6 @@ - Paket exec-path-from-shell, um PATH aus Linux auch in emacs zu haben - Smart mode line? - Theme - - evil - evil-collection or custom in init file? - Hydra - General @@ -230,6 +229,17 @@ Some windows specific stuff (setq which-key-idle-delay 0.5)) #+END_SRC +* Evil + +#+BEGIN_SRC emacs-lisp + (use-package evil + :ensure t + :defer .1 ;; don't block emacs when starting, load evil immediately after startup + :init + (setq evil-want-integration nil) ;; required by evil-collection + :config + (evil-mode 1)) +#+END_SRC * orgmode ** org #+BEGIN_SRC emacs-lisp