Skip to content

Instantly share code, notes, and snippets.

@haldun
Created October 30, 2015 22:00
Show Gist options
  • Save haldun/6f8669aeca8b7faafaf0 to your computer and use it in GitHub Desktop.
Save haldun/6f8669aeca8b7faafaf0 to your computer and use it in GitHub Desktop.
installing slime mac os x
brew install sbcl
curl -O https://beta.quicklisp.org/quicklisp.lisp
sbcl --load quicklisp.lisp
* (quicklisp-quickstart:install)
* (ql:add-to-init-file)
* (ql:quickload "quicklisp-slime-helper")
.emacs file
(load (expand-file-name "~/quicklisp/slime-helper.el"))
;; Replace "sbcl" with the path to your implementation
(setq inferior-lisp-program "sbcl")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment