diff options
author | Alan Pearce | 2017-04-28 12:27:26 +0200 |
---|---|---|
committer | Alan Pearce | 2017-04-28 12:27:26 +0200 |
commit | 6c55e4a29ea01f62af3d8ec73709b3273d4511e1 (patch) | |
tree | e681ddeecd075527255c9033d41c62384a5efa53 /emacs/.emacs.d/init.org | |
parent | b421447256c3acaa911b2a4ef9b3cd810f42a68f (diff) | |
download | nixfiles-6c55e4a29ea01f62af3d8ec73709b3273d4511e1.tar.lz nixfiles-6c55e4a29ea01f62af3d8ec73709b3273d4511e1.tar.zst nixfiles-6c55e4a29ea01f62af3d8ec73709b3273d4511e1.zip |
Emacs: Move hyperspec setup to correct place
Diffstat (limited to 'emacs/.emacs.d/init.org')
-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 |