diff options
author | Case Duckworth | 2021-04-04 23:10:18 -0500 |
---|---|---|
committer | Case Duckworth | 2021-04-04 23:10:18 -0500 |
commit | e8d3c1d57358ca5707906f0204e9b7e38cce67a4 (patch) | |
tree | a3ec81ac166fd78a8da2492f5a6013c45422560f | |
parent | Fix paredit-mode bindings (diff) | |
download | emacs-e8d3c1d57358ca5707906f0204e9b7e38cce67a4.tar.gz emacs-e8d3c1d57358ca5707906f0204e9b7e38cce67a4.zip |
Guile -> Scheme
Guile /is/ a scheme, after all.
-rw-r--r-- | init.el | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/init.el b/init.el index 489edbd..0f418c3 100644 --- a/init.el +++ b/init.el | |||
@@ -858,11 +858,13 @@ if ripgrep is installed, otherwise `consult-grep'." | |||
858 | (:option (append auto-mode-alist) '("\\.fnl\\'" . fennel-mode)) | 858 | (:option (append auto-mode-alist) '("\\.fnl\\'" . fennel-mode)) |
859 | (:bind "C-c C-c" ))) | 859 | (:bind "C-c C-c" ))) |
860 | 860 | ||
861 | ;;;;; Guile Scheme | 861 | ;;;;; Scheme |
862 | (when (or (executable-find "guile") | 862 | (when (or (executable-find "guile") |
863 | (exectuable-find "csi") | 863 | (exectuable-find "csi") |
864 | (executable-find "racket")) | 864 | (executable-find "racket")) |
865 | (setup (:straight geiser))) | 865 | (setup (:straight geiser) |
866 | (:with-mode geiser-repl-mode | ||
867 | (:hook enable-paredit-mode)))) | ||
866 | 868 | ||
867 | ;;;; Lua | 869 | ;;;; Lua |
868 | (setup (:straight lua-mode) | 870 | (setup (:straight lua-mode) |