updated sly use-package definition

This commit is contained in:
a. fox 2024-05-02 19:37:11 -04:00
parent a8ce4d9ba4
commit a1a8c5d3e8
1 changed files with 10 additions and 12 deletions

View File

@ -1267,22 +1267,21 @@ What follows from here is loading and configuring the rest of my packages utiliz
:map lisp-mode-map
("C-c e" . macrostep-expand))
:hook ((lisp-mode . sly-editing-mode))
:config
(setq sly-words-of-encouragement
`("Let the hacking commence!"
'("Let the hacking commence!"
"Hacks and glory await!"
"Hack and be merry!"
"Your hacking starts... NOW!"
"May the source be with you!"
"Take this REPL, and may it serve you well."
"Take this REPL, may it serve you well."
"Lemonodor-fame is but a hack away!"
"Are we consing yet?"
,(format "%s, this could be the start of a beautiful program."
(sly-user-first-name))))
:hook ((lisp-mode . sly-editing-mode))
:init
"Are we consing yet?"))
(setq sly-lisp-implementations
'((roswell ("ros" "-Q" "run"))
(roswell-4gb-dynamic ("ros" "run" "--" "--dynamic-space-size" "4Gb"))))
(add-hook 'sly-mrepl-mode-hook
(lambda () (electric-pair-local-mode -1)))
(add-hook 'sly-mode-hook
@ -1291,9 +1290,8 @@ What follows from here is loading and configuring the rest of my packages utiliz
(save-excursion (sly)))))
:custom
((slime-contribs '(sly-fancy sly-macrostep sly-quicklisp sly-asdf
sly-reply-ansi-color sly-named-readtables))
(inferior-lisp-program "ros run -Q")))
((sly-contribs '(sly-fancy sly-macrostep sly-quicklisp sly-asdf sly-named-readtables))
(sly-default-lisp 'roswell-4gb-dynamic)))
(use-package elpy
:disabled