summary refs log tree commit diff stats
path: root/init.el
diff options
context:
space:
mode:
authorCase Duckworth2021-04-03 09:47:35 -0500
committerCase Duckworth2021-04-03 09:47:42 -0500
commitc0bbc7b84031baa416232769b45e193a5cac6688 (patch)
tree9e991970e3a627f31f725dac4c15f9cb53d23059 /init.el
parentAdd `fennel' and `lua' (diff)
downloademacs-c0bbc7b84031baa416232769b45e193a5cac6688.tar.gz
emacs-c0bbc7b84031baa416232769b45e193a5cac6688.zip
Add `geiser'
Diffstat (limited to 'init.el')
-rw-r--r--init.el5
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)