From 856bb3fe4a94b5d81468055c7e348a8db99be2a1 Mon Sep 17 00:00:00 2001 From: Mitch Tishmack Date: Fri, 27 Feb 2015 13:40:48 -0600 Subject: [PATCH] Enable local custom.el and custom setup. --- emacs/.emacs.d/emacs.org | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/emacs/.emacs.d/emacs.org b/emacs/.emacs.d/emacs.org index ea3d133..72d2c0b 100644 --- a/emacs/.emacs.d/emacs.org +++ b/emacs/.emacs.d/emacs.org @@ -972,3 +972,12 @@ Create the *auto-insert-alist* so all the mode lists are the same auto-insert-alist) ) #+END_SRC +* custom + +Load this up last to allow for local customization if needed and to keep from custom writing to the init.el file. + +#+BEGIN_SRC emacs-lisp + (setq custom-file "~/.emacs.d/custom.el") + (load custom-file 'noerror) + +#+END_SRC