Skip to content

Instantly share code, notes, and snippets.

@RobBlackwell
Last active August 29, 2015 14:09
Show Gist options
  • Save RobBlackwell/4ed1aaf78154d386c4a2 to your computer and use it in GitHub Desktop.
Save RobBlackwell/4ed1aaf78154d386c4a2 to your computer and use it in GitHub Desktop.
Common Lisp Notes

Use Quicklisp

http://www.quicklisp.org/

Use the SLIME provided with Quicklisp

(ql:quickload "quicklisp-slime-helper")

Update your Quicklisp

To get updated software, use:

(ql:update-all-dists)

To update the Quicklisp client, use:

(ql:update-client)

Allow your local projects to be ql:quickload able

Put

(:tree "~/Dropbox/code/lisp/")

in your ~/.config/common-lisp/source-registry.conf.d/my-asdf.conf

This means that any and all lisp projects in your lisp directory are now ql:quickload able.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment