Skip to content

Instantly share code, notes, and snippets.

@jclosure
Last active August 29, 2015 14:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jclosure/298b1e4eb38d2e748f67 to your computer and use it in GitHub Desktop.
Save jclosure/298b1e4eb38d2e748f67 to your computer and use it in GitHub Desktop.
Setup Petite Scheme as Your REPL Within Emacs
;put this in your ~/.emacs file
;ref: http://community.schemewiki.org/?emacs-tutorial
;;; Always do syntax highlighting
(global-font-lock-mode 1)
;;; Also highlight parens
(setq show-paren-delay 0
show-paren-style 'parenthesis)
(show-paren-mode 1)
;;; This is the binary name of my scheme implementation
(setq scheme-program-name "petite")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment