Skip to content

Instantly share code, notes, and snippets.

@jmercouris
Created December 13, 2017 10:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jmercouris/a16b5106ad918bbd843c304f09918e08 to your computer and use it in GitHub Desktop.
Save jmercouris/a16b5106ad918bbd843c304f09918e08 to your computer and use it in GitHub Desktop.
(defun load-quicklisp (path)
(let ((quicklisp-init (merge-pathnames path (user-homedir-pathname))))
(when (probe-file quicklisp-init)
(load quicklisp-init))))
(loop for path in (list ".quicklisp/setup.lisp" "quicklisp/setup.lisp")
do (load-quicklisp path))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment