Skip to content

Instantly share code, notes, and snippets.

@martinbalfanz
Created July 25, 2011 20:54
Show Gist options
  • Save martinbalfanz/1105189 to your computer and use it in GitHub Desktop.
Save martinbalfanz/1105189 to your computer and use it in GitHub Desktop.
slime config
(add-to-list 'load-path "~/.emacs.d/slime")
(add-to-list 'load-path "~/.emacs.d/slime/contrib")
(when (require 'slime "slime" t)
(slime-setup '(slime-fancy slime-asdf slime-references slime-indentation)))
(setq slime-enable-evaluate-in-emacs t
slime-net-coding-system 'utf-8-unix
;; lisp-indent-function 'cl-indent:function
)
(setq slime-lisp-implementations
`((ccl ,@(list (case system-type
(darwin '("/Applications/ccl/dx86cl" "-K utf-8"))
(gnu/linux '("~/build/ccl/lx86cl" "-K utf-8"))))))
slime-default-lisp 'ccl)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment