From 84b49b09bf332cefa35588abb366e2b9df2c1d24 Mon Sep 17 00:00:00 2001 From: Marc Pohling Date: Fri, 11 Sep 2020 09:54:59 +0200 Subject: [PATCH] config dir not hardcoded anymore --- init.org | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/init.org b/init.org index 308ef50..de6a730 100644 --- a/init.org +++ b/init.org @@ -126,8 +126,8 @@ This function updates init.el whenever changes in init.org are made. The update #+END_SRC #+BEGIN_SRC emacs-lisp -(defvar MY--PATH_USER_LOCAL (expand-file-name "~/.config/emacs/user-local/")) -(defvar MY--PATH_USER_GLOBAL (expand-file-name "~/.config/emacs/user-global/")) +(defvar MY--PATH_USER_LOCAL (concat user-emacs-directory "user-local/")) +(defvar MY--PATH_USER_GLOBAL (concat user-emacs-directory "user-global/")) (add-to-list 'custom-theme-load-path (concat MY--PATH_USER_GLOBAL "themes"))