Try to fix sly

This commit is contained in:
Alexander Rosenberg 2024-07-12 22:40:56 -07:00
parent 7d3406378f
commit 3da7b0c623
Signed by: Zander671
GPG Key ID: 5FD0394ADBD72730
2 changed files with 6 additions and 5 deletions

View File

@ -93,7 +93,6 @@
;; (switch-to-buffer vterm-buff)
;; (puthash nil (vterm vterm-buffer-name) my/project-vterm-hash-table)))))
;; ai stuff (also mostly fun)
;; (use-package ellama
;; :defer nil

10
init.el
View File

@ -903,13 +903,15 @@ COMMAND and COMINT are like `compile'."
;; sly
(use-package sly
:hook (lisp-mode . my/common-lisp-autoconnect-sly)
:hook (lisp-mode . my/-lisp-mode-autoconnect-sly)
:autoload sly-connected-p
:init
(defun my/common-lisp-autoconnect-sly ()
(defun my/-lisp-mode-autoconnect-sly ()
(unless (sly-connected-p)
(save-excursion (sly))))
(setq inferior-lisp-program "/usr/bin/sbcl"))
(sly)))
(setq inferior-lisp-program "/usr/bin/sbcl")
:config
(sly-symbol-completion-mode -1))
;; pdf-tools
(use-package pdf-tools