LW load paths
Is there something akin to Emacs' load-path that I can do in the .lispworks file to expose various packages I've made and just #'load or #'require by name instead of by full path?While I've been programming Lisp for quite some time (hobbyist), I've never done "full" development of something major. Perhaps the above question is rendered moot by just saving an image or using quicklisp, etc, but ATM I'm hoping there's just a simple thing like:
(push #p"~/Projects/lisp-stuff/" *load-paths*)
I've been looking through the docs, sample .lispworks and configure.lisp files and not seeing anything. Thanks in advance.
Jeff M.