nixfleet/users/profiles/emacs/emacs.d/config/config-evil.el
Andrea Ciceri 28f14cab2e
Things
- `cura` without disallowed areas for Ender 3 printers
- `udiskie` service for automounting
- Emacs
  - removed `vimish-fold` and `evil-vimish-fold`
  - added `origami`
  - added  `highlight-indent-guides`
  - restored and improved `dirvish`
2022-06-03 11:48:47 +02:00

19 lines
401 B
EmacsLisp

(use-package evil
:custom
(evil-want-keybinding nil)
(evil-undo-system 'undo-redo)
:config
(evil-mode 1) ; globally enable evil-mode except for the following modes
(mapcar (lambda (mode) (evil-set-initial-state mode 'emacs))
'(vterm-mode
eshell-mode
dired-mode
)))
(use-package evil-collection
:after (evil)
:config
(evil-collection-init))
(provide 'config-evil)