Browse Source

added evil mode

master
Marc Pohling 4 years ago
parent
commit
d398e90f4c
1 changed files with 11 additions and 1 deletions
  1. 12
      init.org

12
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

Loading…
Cancel
Save