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

20 lines
590 B
EmacsLisp
Raw Normal View History

2022-11-08 17:53:06 +00:00
;;; This file customizes Emacs' editor
2022-11-08 17:53:07 +00:00
;;; evil - A Vi Layer inside of Emacs
2022-11-08 17:53:06 +00:00
(setq evil-undo-system 'undo-fu) ; Enable undo/redo functionality using undo-fu
2022-11-08 17:53:07 +00:00
(evil-collection-init) ; Enable the evil-collection keybinds
(evil-mode 1) ; Enable evil
;;; Themes
;; Customize doom-themes
(setq doom-themes-enable-bold t
doom-themes-enable-italic t)
(doom-themes-treemacs-config) ; Enable theming of treemacs
(doom-themes-org-config) ; And org-mode
;; Set theme to doom-tokyo-night, Dianicemacs' default
(load-theme 'doom-tokyo-night t)
2022-11-08 17:53:06 +00:00
;; Provide this file to init.el
(provide 'editor)