Created
October 30, 2015 22:00
-
-
Save haldun/6f8669aeca8b7faafaf0 to your computer and use it in GitHub Desktop.
installing slime mac 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 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