Skip to content

Commit

Permalink
Updated Emacs fennel-mode package
Browse files Browse the repository at this point in the history
  • Loading branch information
bkhl committed Oct 13, 2024
1 parent 1e27b2e commit 132a1f4
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions content/emacs-configuration.org
Original file line number Diff line number Diff line change
Expand Up @@ -2073,6 +2073,20 @@ Helpful functions for refactoring regular expressions to ~rx~ expressions.
xr-pp-rx-to-str))
#+end_src

**** [[https://git.sr.ht/~technomancy/fennel-mode][fennel-mode]] for [[https://fennel-lang.org/][Fennel]]
:PROPERTIES:
:CUSTOM_ID: fennel
:END:

#+begin_src emacs-lisp
(use-package fennel-mode
:mode (rx ".fnl" eos)
:init
(defun my/config-fennel-mode ()
(setq prettify-symbols-alist '(("lambda" . ?λ))))
:hook (fennel-mode . my/config-fennel-mode))
#+end_src

**** [[https://github.com/immerrr/lua-mode][lua-mode]]
:PROPERTIES:
:CUSTOM_ID: lua
Expand Down

0 comments on commit 132a1f4

Please sign in to comment.