diff options
| -rw-r--r-- | .dir-locals.el | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/.dir-locals.el b/.dir-locals.el index 3c181f6..e0d3e5a 100644 --- a/.dir-locals.el +++ b/.dir-locals.el @@ -1,4 +1,8 @@ ;;; Directory Local Variables ;;; For more information see (info "(emacs) Directory Variables") -((fennel-mode . ((eval . (put 'fn* 'fennel-indent-function 'defun))))) +((fennel-mode . ((eval . (put 'when-some 'fennel-indent-function 1)) + (eval . (put 'if-some 'fennel-indent-function 1)) + (eval . (put 'when-let 'fennel-indent-function 1)) + (eval . (put 'if-let 'fennel-indent-function 1)) + (eval . (put 'fn* 'fennel-indent-function 'defun))))) |