doomemacs/modules/module-crystal.el
2015-08-27 23:25:35 -04:00

11 lines
193 B
EmacsLisp

;;; 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