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
This commit is contained in:
zickzackv 2012-04-17 20:02:02 +03:00
parent 72fbf974c3
commit 26394bc3a6

View file

@ -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"))