From b78ea96dbf3acac9423f387ef167dc02551598b7 Mon Sep 17 00:00:00 2001 From: Correl Roush Date: Thu, 13 Nov 2014 12:37:20 -0500 Subject: [PATCH] [emacs] update and document elisp autoloader --- .emacs.d/emacs.org | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.emacs.d/emacs.org b/.emacs.d/emacs.org index ceef469..0ebeb00 100644 --- a/.emacs.d/emacs.org +++ b/.emacs.d/emacs.org @@ -450,6 +450,9 @@ Any elisp files dropped into =~/.emacs.local.d/= will be automatically loaded. + I usually use this is a testing ground for new configuration before + adding it here, and also for any personal / sensitive configuration. + #+name: auto-load #+BEGIN_SRC emacs-lisp (defun my/load-elisp-directory (path) @@ -459,7 +462,6 @@ (load-file lisp-file)) (directory-files (expand-file-name path) t file-pattern))))) - (my/load-elisp-directory "~/.emacs.d/init.d") (my/load-elisp-directory "~/.emacs.local.d") #+END_SRC * Configuration file layout