Skip to content

Instantly share code, notes, and snippets.

@fourier
Created October 25, 2018 16:27
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fourier/af97498cd5a2ed364a6eeed965d9964f to your computer and use it in GitHub Desktop.
Save fourier/af97498cd5a2ed364a6eeed965d9964f to your computer and use it in GitHub Desktop.
Simple LispWorks Personal configuration
#-:LISPWORKS-PERSONAL-EDITION (load-all-patches)
#+(and LISPWORKS-PERSONAL-EDITION MSWINDOWS) (load "C:/apps/asdf/asdf.lisp")
;;; The following lines added by ql:add-to-init-file:
#-quicklisp
(let ((quicklisp-init #+:MSWINDOWS "C:/apps/quicklisp/setup.lisp"
#-:MSWINDOWS (merge-pathnames ".quicklisp/setup.lisp"
(user-homedir-pathname))))
(format *standard-output* "ql init: ~s" quicklisp-init)
(when (probe-file quicklisp-init)
(load quicklisp-init)))
;; add Sources/ directory to quicklisp local directories
(push (pathname #+:MSWINDOWS "C:/Sources/lisp" #-:MSWINDOWS "~/Sources/lisp") ql:*local-project-directories*)
;; update list of QuickLisp projects
(ql:register-local-projects)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment