From e58c95a1507a029cdb4c4dc0b020dfa90b6c2a5a Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Wed, 5 Oct 2016 04:28:19 -0700 Subject: [PATCH] [Emacs] Move this-machine.el load --- dotfiles/emacs.d/README.org | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dotfiles/emacs.d/README.org b/dotfiles/emacs.d/README.org index 15922ca1..cfead34c 100644 --- a/dotfiles/emacs.d/README.org +++ b/dotfiles/emacs.d/README.org @@ -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