Files
sydnix/users/crumb/programs/emacs/init.el
Madeleine Sydney bfd271125e wip: refactor: Break init.el into modules
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.
2025-01-17 16:28:45 -07:00

12 lines
224 B
EmacsLisp
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
;; -*- lexical-binding: t; -*-
(load (locate-user-emacs-file "init-straight"))
(syd-initialise-straight)
(add-to-list 'load-path (file-name-concat user-emacs-directory "modules"))
(require 'syd-evil)
(require 'syd-ui)