Merge pull request #132 from zickzackv/patch-1
Loads the files in the personal dir by absolute path. Loads really the c...
This commit is contained in:
commit
7c715f3f58
1 changed files with 1 additions and 1 deletions
2
init.el
2
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"))
|
||||
|
|
Loading…
Reference in a new issue