[Emacs] Move this-machine.el load

This commit is contained in:
Ivan Malison 2016-10-05 04:28:19 -07:00
parent a1a988a70e
commit e58c95a150
No known key found for this signature in database
GPG Key ID: 62530EFBE99DC2F8

View File

@ -54,7 +54,6 @@ in the dotfiles repo but they are shared across machines elsewhere.
(defvar custom-after-file "~/.emacs.d/custom-after.el")
(setq custom-file "~/.emacs.d/custom-before.el")
(when (file-exists-p custom-file) (load custom-file))
(when (file-exists-p machine-custom) (load machine-custom))
#+END_SRC
** emit
*** TODO this needs to be done better, but it works for now
@ -4129,4 +4128,5 @@ load-theme hook (See the heading below).
* Post Init Custom
#+BEGIN_SRC emacs-lisp
(when (file-exists-p custom-after-file) (load custom-after-file))
(when (file-exists-p machine-custom) (load machine-custom))
#+END_SRC