This repository has been archived on 2024-03-23. You can view files and clone it, but cannot push or open issues or pull requests.
dianciemacs/lisp/editor.el
2022-11-08 17:53:06 +00:00

9 lines
236 B
EmacsLisp

;;; This file customizes Emacs' editor
;; evil - A Vi Layer inside of Emacs
(evil-mode 1) ; Enable evil
(setq evil-undo-system 'undo-fu) ; Enable undo/redo functionality using undo-fu
;; Provide this file to init.el
(provide 'editor)