diff options
author | Case Duckworth | 2021-04-03 09:47:35 -0500 |
---|---|---|
committer | Case Duckworth | 2021-04-03 09:47:42 -0500 |
commit | c0bbc7b84031baa416232769b45e193a5cac6688 (patch) | |
tree | 9e991970e3a627f31f725dac4c15f9cb53d23059 | |
parent | Add `fennel' and `lua' (diff) | |
download | emacs-c0bbc7b84031baa416232769b45e193a5cac6688.tar.gz emacs-c0bbc7b84031baa416232769b45e193a5cac6688.zip |
Add `geiser'
-rw-r--r-- | init.el | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/init.el b/init.el index 4580aed..3a18827 100644 --- a/init.el +++ b/init.el | |||
@@ -853,6 +853,11 @@ if ripgrep is installed, otherwise `consult-grep'." | |||
853 | (:option (append auto-mode-alist) '("\\.fnl\\'" . fennel-mode)) | 853 | (:option (append auto-mode-alist) '("\\.fnl\\'" . fennel-mode)) |
854 | (:bind "C-c C-c" ))) | 854 | (:bind "C-c C-c" ))) |
855 | 855 | ||
856 | ;;;;; Guile Scheme | ||
857 | (when (or (executable-find "guile") | ||
858 | (exectuable-find "csi") | ||
859 | (executable-find "racket")) | ||
860 | (setup (:straight geiser))) | ||
856 | 861 | ||
857 | ;;;; Lua | 862 | ;;;; Lua |
858 | (setup (:straight lua-mode) | 863 | (setup (:straight lua-mode) |