- `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`
19 lines
401 B
EmacsLisp
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)
|