comparison .emacs @ 358:08af9e123baa

emacs: load customize file earlier so it can matter for things like smart-modeline
author Augie Fackler <raf@durin42.com>
date Thu, 08 Jan 2015 16:22:23 -0500
parents 7edfa8d22584
children 9a2541ec4d4d
comparison
equal deleted inserted replaced
355:7edfa8d22584 358:08af9e123baa
5 ; Emacs Starter Kit: http://github.com/technomancy/emacs-starter-kit 5 ; Emacs Starter Kit: http://github.com/technomancy/emacs-starter-kit
6 6
7 ; Start the server so that emacsclient will work 7 ; Start the server so that emacsclient will work
8 (server-start) 8 (server-start)
9 9
10 (setq custom-file "~/.elisp/settings/99.custom.el") 10 (setq custom-file "~/.elisp/settings/01.custom.el")
11 11
12 (let ((settings-files (concat (getenv "HOME") "/.elisp/settings"))) 12 (let ((settings-files (concat (getenv "HOME") "/.elisp/settings")))
13 (mapc '(lambda (p) (load (concat settings-files "/" p))) 13 (mapc '(lambda (p) (load (concat settings-files "/" p)))
14 (directory-files settings-files nil "^[0-9].*el$"))) 14 (directory-files settings-files nil "^[0-9].*el$")))
15 15