How do I change `load-path'?
============================
In general, you should only add to the `load-path'. You can add
directory /DIR/SUBDIR to the load path like this:
(setq load-path (cons "/dir/subdir/" load-path))
To do this relative to your home directory:
(setq load-path (cons "~/mysubdir/" load-path)