From ce9e9df14c5b23fd708c8602fd54bb927dd4d1c9 Mon Sep 17 00:00:00 2001 From: Mitch Tishmack Date: Sat, 28 May 2016 21:47:26 -0500 Subject: [PATCH] Load ~/.emacs.d/local.el at end of emacs startup Allows for local customization outside of customize --- emacs.org | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/emacs.org b/emacs.org index 0e2a40c..e731836 100644 --- a/emacs.org +++ b/emacs.org @@ -1297,3 +1297,8 @@ Load this up last to allow for local customization if needed and to keep from cu (setq custom-file "~/.emacs.d/custom.el") (load custom-file 'noerror) #+END_SRC + +* Load any local definitions +#+BEGIN_SRC emacs-lisp +(load-file "~/.emacs.d/local.el") +#+END_SRC