From: Ramakrishnan Muthukrishnan <ram@leastauthority.com>
Date: Fri, 20 Mar 2015 10:22:45 +0000 (+0530)
Subject: slime/sbcl
X-Git-Url: https://git.rkrishnan.org/%5B/%5D%20/file/URI:LIT:krugkidfnzsc4/@@named=/frontends/nxhtml.html?a=commitdiff_plain;h=ae1b622c554c9c69dd1bb9d901dfcf16fcb5e93a;p=.emacs.d.git

slime/sbcl
---

diff --git a/init.el b/init.el
index 8a4d472..c06efaf 100644
--- a/init.el
+++ b/init.el
@@ -38,7 +38,7 @@
   (package-refresh-contents))
 
 ;; make sure my list of packages are installed
-(setq package-list '(go-mode rust-mode haskell-mode clojure-mode ghc restclient tangotango-theme cider))
+(setq package-list '(go-mode rust-mode haskell-mode clojure-mode ghc restclient tangotango-theme cider slime))
 
 ; install the missing packages
 (dolist (package package-list)
@@ -122,3 +122,9 @@
 
 ;; gofmt
 (add-hook 'before-save-hook #'gofmt-before-save)
+
+
+;; slime/CL
+;; Set your lisp system and, optionally, some contribs
+(setq inferior-lisp-program "~/.nix-profile/bin/sbcl")
+(setq slime-contribs '(slime-fancy))