help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: add directories to load-path


From: Gnutux
Subject: Re: add directories to load-path
Date: Tue, 15 Sep 2009 16:22:34 +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)




reply via email to

[Prev in Thread] Current Thread [Next in Thread]