summaryrefslogtreecommitdiff
path: root/.emacs.d/lisp/init-slime.el
blob: 96c863a73c454c66fd5af25e8aaef5fd71a32158 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
;;; slime --- All slime configuration

;;; Commentary:

;;; Code:

(require-package 'slime)

(setq inferior-lisp-program "/usr/bin/sbcl")
(setq slime-contribs '(slime-fancy))

(provide 'init-slime)
;;; init-slime ends here