mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
11 lines
193 B
EmacsLisp
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
|