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