summary refs log tree commit diff stats
path: root/emacs/.emacs.d/init.org
diff options
context:
space:
mode:
authorAlan Pearce2017-04-28 12:27:26 +0200
committerAlan Pearce2017-04-28 12:27:26 +0200
commit6c55e4a29ea01f62af3d8ec73709b3273d4511e1 (patch)
treee681ddeecd075527255c9033d41c62384a5efa53 /emacs/.emacs.d/init.org
parentb421447256c3acaa911b2a4ef9b3cd810f42a68f (diff)
downloaddotfiles-6c55e4a29ea01f62af3d8ec73709b3273d4511e1.tar.lz
dotfiles-6c55e4a29ea01f62af3d8ec73709b3273d4511e1.tar.zst
dotfiles-6c55e4a29ea01f62af3d8ec73709b3273d4511e1.zip
Emacs: Move hyperspec setup to correct place
Diffstat (limited to 'emacs/.emacs.d/init.org')
-rw-r--r--emacs/.emacs.d/init.org11
1 files changed, 2 insertions, 9 deletions
diff --git a/emacs/.emacs.d/init.org b/emacs/.emacs.d/init.org
index 419f38a..f79362e 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