Skip to content

Instantly share code, notes, and snippets.

@francismhw
Created April 19, 2014 09:24
Show Gist options
  • Select an option

  • Save francismhw/11079073 to your computer and use it in GitHub Desktop.

Select an option

Save francismhw/11079073 to your computer and use it in GitHub Desktop.
slime setup os x
brew install emacs --cocoa sbcl
curl -O http://beta.quicklisp.org/quicklisp.lisp
sbcl --load quicklisp.lisp
(quicklisp-quickstart:install)
(ql:quickload "quicklisp-slime-helper")
vi .emacs.d/personal/slime.el
slime.el
(load (expand-file-name "~/quicklisp/slime-helper.el"))
;; Replace "sbcl" with the path to your implementation
(setq inferior-lisp-program "sbcl")
emacs
M-x slime
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment