mirror of
https://github.com/doomemacs/doomemacs.git
synced 2025-12-27 04:11:41 -08:00
10 lines
193 B
EmacsLisp
10 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
|