]> git.earman.xyz Git - emacsinit.git/commitdiff
Take out slime-helper, don't auto start slime
authorrearman <rearman@r717.net>
Thu, 28 Aug 2025 20:32:21 +0000 (16:32 -0400)
committerrearman <rearman@r717.net>
Thu, 28 Aug 2025 20:32:21 +0000 (16:32 -0400)
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.

re/re-packages.el

index 4de8568eafd2a76afcabff909ff4667337313709..842be74e587e651f1fc032c003ae39ed95de212f 100644 (file)
 
 (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