blob: 3859f7d65e013dff127670202f79c0711a633905 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
;;; slime site-lisp configuration
(add-to-list 'load-path "@SITELISP@")
(require 'slime)
(slime-setup)
;; this allows us not to require dev-lisp/hyperspec
;; (which is non-free) as a hard dependency
(setq common-lisp-hyperspec-root
(if (file-exists-p "/usr/share/doc/hyperspec/HyperSpec")
"file:///usr/share/doc/hyperspec/HyperSpec/"
"http://www.lispworks.com/reference/HyperSpec/"))
|