Skip to content

Commit

Permalink
Load user-specific-dir before user-specific-config
Browse files Browse the repository at this point in the history
  • Loading branch information
crmne authored and technomancy committed Jun 26, 2011
1 parent 55fb2cb commit 09d99b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion init.el
Expand Up @@ -72,8 +72,8 @@
(add-to-list 'load-path user-specific-dir)

(if (file-exists-p system-specific-config) (load system-specific-config))
(if (file-exists-p user-specific-config) (load user-specific-config))
(if (file-exists-p user-specific-dir)
(mapc #'load (directory-files user-specific-dir nil ".*el$")))
(if (file-exists-p user-specific-config) (load user-specific-config))

;;; init.el ends here

0 comments on commit 09d99b0

Please sign in to comment.