Provides a simple Scheme mode for Emacs, based on scheme-mode
, with richer syntax highlighting than alternatives.
scheme-mode
on the left, exoscheme-mode
on the right
- Install to your local package archive:
cd ~/.emacs.d/packages
curl -O https://raw.githubusercontent.com/exokomodo/exoscheme-mode/refs/heads/main/exoscheme-mode.el
- Enable
exoscheme-mode
for scheme files
(require 'exoscheme-mode)
;; Automatically enable the exoscheme-mode major mode for *.scm files
(add-to-list 'auto-mode-alist '("\\.scm\\'" . exoscheme-mode))