Skip to content

Instantly share code, notes, and snippets.

@JamesMcMahon
Last active October 23, 2022 00:31
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 JamesMcMahon/af2568066df8afeae1bb9d4dc448296e to your computer and use it in GitHub Desktop.
Save JamesMcMahon/af2568066df8afeae1bb9d4dc448296e to your computer and use it in GitHub Desktop.
Exo Fennel Encounter REPL in Spacemacs - notes

Some notes on getting this to work via Spacemacs,

You need to add the following

(defun dotspacemacs/user-config ()
  (autoload 'fennel-mode "~/.emacs.d/private/local/fennel-mode/fennel-mode" nil t)
  (add-to-list 'auto-mode-alist '("\\.fnl\\'" . fennel-mode))
  )

to your .spacemacs file.

You'll then need to M(alt)+x and type in set variable to set-inferior-lisp-program to "love ."

Everything else works as described, only problem is that changes seem to reset game state, which kind of sucks.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment