From 3503618af8619128be2b4876c79e6b076f01e94a Mon Sep 17 00:00:00 2001 From: Jeremy Dormitzer Date: Mon, 28 Jan 2019 08:32:24 -0500 Subject: [PATCH] Use user-emacs-directory instead of specifying one --- emacs/init.org | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/emacs/init.org b/emacs/init.org index 55195b8..6540ae0 100755 --- a/emacs/init.org +++ b/emacs/init.org @@ -245,7 +245,7 @@ And this function persists a variable: * Customization File 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")) + (setq custom-file (expand-file-name "custom.el" user-emacs-directory)) (load custom-file t) #+END_SRC