Slime-helper.el was causing slime/swank version issues, even when the versions
were manually verified to match. Auto-starting slime annoyed me, especially
when trying to connect to stumpwm with the config files already open.
(use-package slime
:config
- (load (expand-file-name "~/quicklisp/slime-helper.el"))
(setq inferior-lisp-program "sbcl"
slime-net-coding-system 'utf-8-unix)
(let* ((core (expand-file-name "~/sbcl.core-for-slime")))
(when (file-exists-p core)
- (setq slime-lisp-implementations (list `(sbcl ("sbcl" "--core" ,core))))))
- (add-hook 'slime-mode-hook
- (lambda ()
- (unless (slime-connected-p) (save-excursion (slime))))))
+ (setq slime-lisp-implementations (list `(sbcl ("sbcl" "--core" ,core)))))))
(use-package geiser
:config