Browse Source

config dir not hardcoded anymore

master
Marc Pohling 4 years ago
parent
commit
84b49b09bf
1 changed files with 2 additions and 2 deletions
  1. 4
      init.org

4
init.org

@ -126,8 +126,8 @@ This function updates init.el whenever changes in init.org are made. The update
#+END_SRC #+END_SRC
#+BEGIN_SRC emacs-lisp #+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")) (add-to-list 'custom-theme-load-path (concat MY--PATH_USER_GLOBAL "themes"))

Loading…
Cancel
Save