Currently, we will just throw everything into modules/ and require it. As the Emacs config grows in complexity, we can make the minor improvement to require everything under glob modules/*.el without explicitly naming each feature. Further, one could easily imagine a module system with conditionals and flags à la Doom.
10 lines
151 B
EmacsLisp
10 lines
151 B
EmacsLisp
;;; syd-evil.el -*- lexical-binding: t; -*-
|
|
|
|
(use-package evil
|
|
:init
|
|
(setq evil-want-minibuffer t)
|
|
:config
|
|
(evil-mode 1))
|
|
|
|
(provide 'syd-evil)
|