How do I configure Emacs to set Guile as the default Scheme implementation?
Asked
Active
Viewed 368 times
1 Answers
0
You could set geiser-default-implementation
, or if you only want guile set the geiser-actve-implementations
to '(guile)
.

Rorschach
- 31,301
- 5
- 78
- 129
-
That was it! I just did `(setf geiser-active-implementations '(guile))` and it worked. – solidslatedrive Dec 13 '16 at 14:25