From 34a6f2b959e1d5c703359627bf464cbef0178376 Mon Sep 17 00:00:00 2001 From: Jeremy Dormitzer Date: Mon, 28 Jan 2019 08:29:39 -0500 Subject: [PATCH] Pass no-error to (load) to handle custom.el not found --- emacs/init.org | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/emacs/init.org b/emacs/init.org index 4116304..55195b8 100755 --- a/emacs/init.org +++ b/emacs/init.org @@ -246,8 +246,7 @@ And this function persists a variable: I don't want anything to write to my init.el, so save customizations in a separate file: #+BEGIN_SRC emacs-lisp (setq custom-file (expand-file-name "~/.emacs.d/custom.el")) - (when (file-exists-p custom-file) - (load custom-file)) + (load custom-file t) #+END_SRC * Dropbox