diff options
author | Case Duckworth | 2020-11-09 13:47:56 -0600 |
---|---|---|
committer | Case Duckworth | 2020-11-09 13:47:56 -0600 |
commit | c93ca9e41fa28d2ba1eef972ecaec014e236edfd (patch) | |
tree | 69526857375931e07903b98b78408b8d4c9eb995 | |
parent | Asyncify tangling (diff) | |
download | emacs-c93ca9e41fa28d2ba1eef972ecaec014e236edfd.tar.gz emacs-c93ca9e41fa28d2ba1eef972ecaec014e236edfd.zip |
Only load slime if sbcl is present
-rw-r--r-- | config.org | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/config.org b/config.org index f396166..ad13f83 100644 --- a/config.org +++ b/config.org | |||
@@ -678,6 +678,7 @@ I was using company, but I think it might've been causing issues with ~awk-mode~ | |||
678 | *** Lisp (SLIME) | 678 | *** Lisp (SLIME) |
679 | #+begin_src emacs-lisp | 679 | #+begin_src emacs-lisp |
680 | (use-package slime | 680 | (use-package slime |
681 | :when (exectuable-find "sbcl") | ||
681 | :custom | 682 | :custom |
682 | (inferior-lisp-program "sbcl") | 683 | (inferior-lisp-program "sbcl") |
683 | (slime-contribs '(slime-fancy)) | 684 | (slime-contribs '(slime-fancy)) |