feat(emacs): add basic indentation support

Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
Leonardo de Moura 2014-01-09 09:48:18 -08:00
parent b30d524418
commit bcfd043a06

View file

@ -12,7 +12,9 @@
'("\\.lean$") ;; files for which to activate this mode
'((lambda()
(set-input-method "Lean")
(abbrev-mode 1)))
(set (make-local-variable 'lisp-indent-function)
'common-lisp-indent-function)
))
"A mode for Lean files" ;; doc string for this mode
)