summaryrefslogtreecommitdiff
blob: 358af67d918dd9ea3c2edee15430cc6cac559e92 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
;;; site-lisp configuration for SLIME

(add-to-list 'load-path "@SITELISP@")
(add-to-list 'load-path "@SITELISP@/contrib")
(autoload 'slime-highlight-edits-mode "slime-highlight-edits")

(require 'slime-autoloads)
(slime-setup '(slime-fancy slime-asdf slime-banner))

;; 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/"))