Next: How do I use an already running Emacs from another window?, Previous: How do I turn on auto-fill-mode
by default?, Up: Common requests [Contents][Index]
load-path
?In general, you should only add to the load-path
. You can add
directory /dir/subdir to the load path like this:
(add-to-list 'load-path "/dir/subdir/")
To do this relative to your home directory:
(add-to-list 'load-path "~/mysubdir/")