|
|
@ -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 |
|
|
|