Created
May 22, 2022 20:18
-
-
Save aamedina/6a5d9b691f79f23afae0d5193c0d7fd8 to your computer and use it in GitHub Desktop.
Common Lisp snippet from my init.el for Sly config using use-package
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ;;;; Common Lisp | |
| (use-package sly | |
| :ensure t | |
| :init (setq inferior-lisp-program "lispworks")) | |
| (use-package sly-asdf | |
| :after sly | |
| :ensure t) | |
| (use-package sly-quicklisp | |
| :after sly | |
| :ensure t) | |
| (use-package sly-named-readtables | |
| :after sly | |
| :ensure t) | |
| (use-package sly-repl-ansi-color | |
| :after sly | |
| :ensure t) | |
| (use-package sly-macrostep | |
| :after sly | |
| :ensure t) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment