diff options
author | Case Duckworth | 2020-11-27 15:47:07 -0600 |
---|---|---|
committer | Case Duckworth | 2020-11-27 15:47:07 -0600 |
commit | 723e3ebd689e835638813e9cd2a32d38cf622786 (patch) | |
tree | 87f99626534d16f7cd4b6595c0256375612715d3 | |
parent | Unignore etc/eshell and add alias (diff) | |
download | emacs-723e3ebd689e835638813e9cd2a32d38cf622786.tar.gz emacs-723e3ebd689e835638813e9cd2a32d38cf622786.zip |
Add more directories to load-path
-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 |