doomemacs/modules/module-crystal.el

11 lines
193 B
EmacsLisp
Raw Normal View History

2015-08-28 11:25:35 +08:00
;;; 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