From 480d8d4e9e75ce8cc29aafd71f7df52a0341666f Mon Sep 17 00:00:00 2001 From: Taylor Bockman Date: Wed, 15 Jan 2020 22:24:55 -0800 Subject: [PATCH] Load slime quicklisp integration when it is available on the system --- dotfiles/emacs.d/init.el | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/dotfiles/emacs.d/init.el b/dotfiles/emacs.d/init.el index ee61515..98faf96 100644 --- a/dotfiles/emacs.d/init.el +++ b/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"))