summaryrefslogtreecommitdiff
path: root/suweren/home/emacs-init.el
blob: c9080f08fa15f5f84b2e9da80c11eda3c1587898 (plain)
1
2
3
4
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"))