From 26394bc3a635e2cf659fbc374034c8b9c4fe5dd7 Mon Sep 17 00:00:00 2001 From: zickzackv Date: Tue, 17 Apr 2012 20:02:02 +0300 Subject: [PATCH] Loads the files in the personal dir by absolute path. Loads really the custom.el file and others and does not shadow other existing files. Load-path does currently not include the personal dir --- init.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.el b/init.el index c12ef6d..f275cab 100644 --- a/init.el +++ b/init.el @@ -64,7 +64,7 @@ by Prelude.") ;; load the personal settings (this includes `custom-file') (when (file-exists-p prelude-personal-dir) - (mapc 'load (directory-files prelude-personal-dir nil "^[^#].*el$"))) + (mapc 'load (directory-files prelude-personal-dir 't "^[^#].*el$"))) (message "Emacs Prelude is ready to do thy bidding, Master %s!" (getenv "USER"))