blob: 6715d0f9ca10db891c2e5fc4c640ef050f5691ed (
plain)
1
2
3
4
5
6
7
8
|
;; This is a DRY expression to load a list of Emacs configuration files.
(mapcar (lambda (file-name)
(let ((file-path (concat "$XDG_CONFIG_HOME/emacs/" file-name)))
(load-file file-path)))
(list "configuration.el"
"gnus.el"
"org.el"
"roam.el"))
|