Browse Source

Load slime quicklisp integration when it is available on the system

Taylor Bockman 4 years ago
parent
commit
480d8d4e9e
  1. 8
      dotfiles/emacs.d/init.el

8
dotfiles/emacs.d/init.el

@ -237,3 +237,11 @@ There are two things you can do about this warning:
;;--------------------------------------------------------------------------------------
(load-theme 'material t)
;;--------------------------------------------------------------------------------------
;; SLIME Quicklisp Integration
;;--------------------------------------------------------------------------------------
(when (file-exists-p "~/quicklisp/slime-helper.el")
(load (expand-file-name "~/quicklisp/slime-helper.el"))
(setq inferior-lisp-program "sbcl"))

Loading…
Cancel
Save