summaryrefslogtreecommitdiff
path: root/suweren/home/emacs-init.el
diff options
context:
space:
mode:
Diffstat (limited to 'suweren/home/emacs-init.el')
-rw-r--r--suweren/home/emacs-init.el5
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"))