38: How do I change load-path?
In general, you should only *add* to the load-path. You can add
directory /XXX/YYY to the load path like this:
(setq load-path (cons "/XXX/YYY/" load-path))
To do this relative to your home directory:
(setq load-path (cons "~/YYY/" load-path)