2024-02-15 08:18:41 +00:00
|
|
|
;;; init -- My emacs config
|
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
;; Moving my Emacs config from separate directory
|
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
2024-02-19 07:43:02 +00:00
|
|
|
(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))
|
2024-02-15 08:18:41 +00:00
|
|
|
|
|
|
|
(provide 'init)
|
|
|
|
;;; init.el ends here
|