diff options
Diffstat (limited to 'emacs/.emacs.d')
-rw-r--r-- | emacs/.emacs.d/init.org | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/emacs/.emacs.d/init.org b/emacs/.emacs.d/init.org index 419f38ab..f79362e9 100644 --- a/emacs/.emacs.d/init.org +++ b/emacs/.emacs.d/init.org @@ -1830,14 +1830,6 @@ I don’t work with these as often as I would like (add-hook 'lisp-mode-hook #'set-common-lisp-indentation) #+END_SRC -**** hyperspec - -#+BEGIN_SRC emacs-lisp -(use-package hyperspec - :config (progn - (setq common-lisp-hyperspec-root "file://opt/local/share/doc/lisp/HyperSpec-7-0/"))) -#+END_SRC - **** geiser A REPL thing for Scheme. Hopefully I’ll get to use it more in the @@ -1863,7 +1855,8 @@ A REPL thing (and more) for Lisp. (if (file-exists-p ql-slime-helper) (load ql-slime-helper)) (slime-setup '(slime-fancy slime-asdf))) - (setq inferior-lisp-program (or (executable-find "sbcl") + (setq common-lisp-hyperspec-root "file://opt/local/share/doc/lisp/HyperSpec-7-0/" + inferior-lisp-program (or (executable-find "sbcl") (executable-find "ccl64"))))) #+END_SRC |