Evie Litherland-Smith
29bdd978bf
Add all config files to refile targets without being in agenda-files Move completion configs (vertico, corfu, etc...) into own file (from ide)
16 lines
362 B
EmacsLisp
16 lines
362 B
EmacsLisp
;;; init -- My emacs config
|
|
|
|
;;; Commentary:
|
|
;; Moving my Emacs config from separate directory
|
|
|
|
;;; Code:
|
|
|
|
(defvar my/config-files () "List of literate config files to load.")
|
|
|
|
(setq my/config-files (directory-files (locate-user-emacs-file "config") t ".org"))
|
|
|
|
(dolist (fname my/config-files) (org-babel-load-file fname))
|
|
|
|
(provide 'init)
|
|
;;; init.el ends here
|