Created
April 19, 2014 09:24
-
-
Save francismhw/11079073 to your computer and use it in GitHub Desktop.
slime setup os x
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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