all repos — nixfiles @ 6c55e4a29ea01f62af3d8ec73709b3273d4511e1

System and user configuration, managed by nix and home-manager

Emacs: Move hyperspec setup to correct place

Alan Pearce
commit

6c55e4a29ea01f62af3d8ec73709b3273d4511e1

parent

b421447256c3acaa911b2a4ef9b3cd810f42a68f

1 file changed, 2 insertions(+), 9 deletions(-)

jump to
M emacs/.emacs.d/init.orgemacs/.emacs.d/init.org
@@ -1830,14 +1830,6 @@ #'common-lisp-indent-function))
(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 @@ (let ((ql-slime-helper (expand-file-name "~/quicklisp/slime-helper.el")))
(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