Add/Remove and configure several programming environments.
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user