diff options
author | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2024-07-11 16:20:49 +0200 |
---|---|---|
committer | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2024-07-12 19:16:16 +0200 |
commit | 82ce70bf2478658a8d943cc1c7ef4f4a32329ea1 (patch) | |
tree | 161aca47980007428de31e19ff7048b0a6e48ea6 /suweren/home/emacs-init.el | |
parent | f70736e6092fe42d3c1aa886e32f645531ef8798 (diff) |
prepare modular Emacs configuration
Diffstat (limited to 'suweren/home/emacs-init.el')
-rw-r--r-- | suweren/home/emacs-init.el | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/suweren/home/emacs-init.el b/suweren/home/emacs-init.el new file mode 100644 index 0000000..c9080f0 --- /dev/null +++ b/suweren/home/emacs-init.el @@ -0,0 +1,5 @@ +;; 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")) |