diff options
-rw-r--r-- | config.org | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/config.org b/config.org index f41baf6..6347eaf 100644 --- a/config.org +++ b/config.org | |||
@@ -101,12 +101,14 @@ It's highly likely that the WTFPL is completely incompatible with the GPL, for w | |||
101 | 101 | ||
102 | ** Miscellaneous bootstrappy stuff | 102 | ** Miscellaneous bootstrappy stuff |
103 | 103 | ||
104 | *** Add =~/.emacs.d/lisp/= to =load-path= | 104 | *** Add directories to =load-path= |
105 | 105 | ||
106 | #+begin_src emacs-lisp | 106 | #+begin_src emacs-lisp |
107 | (add-to-list 'load-path | 107 | (dolist (dir `(,(concat user-emacs-directory |
108 | (concat user-emacs-directory | 108 | (convert-standard-filename "lisp/")) |
109 | (convert-standard-filename "lisp/"))) | 109 | ,(expand-file-name "~/Sync/elisp/"))) |
110 | (add-to-list 'load-path dir)) | ||
111 | |||
110 | #+end_src | 112 | #+end_src |
111 | 113 | ||
112 | *** Require my secrets | 114 | *** Require my secrets |