diff options
author | Mountain Man <43313373+MountainMan1312@users.noreply.github.com> | 2023-05-22 02:43:42 -0400 |
---|---|---|
committer | Mountain Man <43313373+MountainMan1312@users.noreply.github.com> | 2023-05-22 02:43:42 -0400 |
commit | 5ac2db27f3d3982cd8ad15e70d5a2cb3bd9590df (patch) | |
tree | ed1b5a7df887b7104c0f15dbab8f7b90e240bff1 /init.el | |
parent | Use `flycheck` in `sh-mode` buffers (diff) | |
download | mmosmacs-5ac2db27f3d3982cd8ad15e70d5a2cb3bd9590df.tar.gz mmosmacs-5ac2db27f3d3982cd8ad15e70d5a2cb3bd9590df.tar.bz2 mmosmacs-5ac2db27f3d3982cd8ad15e70d5a2cb3bd9590df.zip |
Use `sly` and SBCL for Common Lisp development
Diffstat (limited to 'init.el')
-rw-r--r-- | init.el | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -839,6 +839,17 @@ | |||
839 | :commands (emacs-lisp-mode) | 839 | :commands (emacs-lisp-mode) |
840 | :hook (emacs-lisp-mode . flycheck-mode)) | 840 | :hook (emacs-lisp-mode . flycheck-mode)) |
841 | 841 | ||
842 | ;; --------------------------------- | ||
843 | ;; Common Lisp | ||
844 | ;; ----------- | ||
845 | ;; The programmable language | ||
846 | ;; --------------------------------- | ||
847 | |||
848 | (use-package sly | ||
849 | :straight t | ||
850 | :config | ||
851 | (setq inferior-lisp-program "/usr/bin/sbcl")) | ||
852 | |||
842 | 853 | ||
843 | ;; --------------------------------- | 854 | ;; --------------------------------- |
844 | ;; sh / Bash | 855 | ;; sh / Bash |