about summary refs log tree commit diff stats
path: root/config.org
diff options
context:
space:
mode:
authorCase Duckworth2020-11-27 15:47:07 -0600
committerCase Duckworth2020-11-27 15:47:07 -0600
commit723e3ebd689e835638813e9cd2a32d38cf622786 (patch)
tree87f99626534d16f7cd4b6595c0256375612715d3 /config.org
parentUnignore etc/eshell and add alias (diff)
downloademacs-723e3ebd689e835638813e9cd2a32d38cf622786.tar.gz
emacs-723e3ebd689e835638813e9cd2a32d38cf622786.zip
Add more directories to load-path
Diffstat (limited to 'config.org')
-rw-r--r--config.org10
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