|
| From: | Gnutux |
| Subject: | Re: add directories to load-path |
| Date: | Tue, 15 Sep 2009 16:10:19 +0900 |
| User-agent: | Wanderlust/2.15.7 (Almost Unreal) |
Taken from http://emacs-fu.blogspot.com or from djcb's dot emacs (thanks by the
way), I have the following in my init.el
; Load all recursively all folders
(defconst elisp-path '("~/.emacs.d"))
(mapcar '(lambda(p)
(add-to-list 'load-path p)
(cd p) (normal-top-level-add-subdirs-to-load-path)) elisp-path)
| [Prev in Thread] | Current Thread | [Next in Thread] |