summaryrefslogtreecommitdiff
blob: 9859b9b6ff781ddbdd0246d5d4b98a81e72c69ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
;;; slime site-lisp configuration

(add-to-list 'load-path "@SITELISP@")

(require 'slime-autoloads)
(eval-after-load '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/"))