Add/Remove and configure several programming environments.

This commit is contained in:
2022-04-11 11:23:59 +01:00
parent ac4d53244e
commit e21c8dfdc0
2 changed files with 25 additions and 10 deletions

View File

@@ -1,2 +1,12 @@
;;slime setup
;;;; slime setup
(setq inferior-lisp-program "clisp")
;;; use my local copy of the Common Lisp HyperSpec
(load "~/clhs-use-local.el" t)
;;; open documentation in eww browser
(defun hyperspec-lookup--hyperspec-lookup-eww (orig-fun &rest args)
(let ((browse-url-browser-function 'eww-browse-url))
(apply orig-fun args)))
(advice-add 'hyperspec-lookup :around #'hyperspec-lookup--hyperspec-lookup-eww)