Support File Search Path
The ordered list of folders AutoCAD scans to find LISP, font, menu, and template files.
AutoCAD's Support File Search Path (Options → Files) is the ordered list of folders AutoCAD checks when it needs to load a LISP file, a font, a hatch pattern, a CUIX, or any other support resource. Putting your routine's folder on the search path means you can (load "myroutine") without specifying a full path, and ACAD.lsp/acaddoc.lsp will be found there. Most installer-based plugins prepend their folder to the search path automatically.
Related guides
Related terms
Autodesk's dialect of LISP, built into AutoCAD since 1986, used to write custom commands and automate drawings.
A LISP file AutoCAD looks for on every session start and loads automatically — the standard place to autoload routines.
A LISP file AutoCAD loads every time a drawing is opened, used for per-document setup and (defun S::STARTUP).