Skip to content

Instantly share code, notes, and snippets.

@michiakig
Created July 20, 2011 17:27
Show Gist options
  • Select an option

  • Save michiakig/1095424 to your computer and use it in GitHub Desktop.

Select an option

Save michiakig/1095424 to your computer and use it in GitHub Desktop.
minimal dotemacs for slime
;; SLIME
(add-to-list 'load-path "~/.emacs.d/slime")
(load "slime.el")
(eval-after-load "slime"
'(progn (slime-setup '(slime-repl))))
(eval-after-load 'slime '(setq slime-protocol-version 'ignore))
(require 'slime)
(slime-setup '(slime-scratch slime-editing-commands))
(setq inferior-lisp-program "sbcl") ; replace with your Common Lisp implementation
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment