Basic crystal-lang support

This commit is contained in:
Henrik Lissner 2015-08-27 23:25:35 -04:00
parent e06a6e74f4
commit 569061795e
3 changed files with 12 additions and 0 deletions

10
modules/module-crystal.el Normal file
View file

@ -0,0 +1,10 @@
;;; module-crystal.el
(use-package crystal-mode
:mode "\\.cr$"
:interpreter "crystal"
:config
(setq crystal-indent-level 2))
(provide 'module-crystal)
;;; module-crystal.el ends here