doomemacs/modules/module-crystal.el

17 lines
405 B
EmacsLisp
Raw Normal View History

2015-08-27 23:25:35 -04:00
;;; module-crystal.el
(use-package crystal-mode
:mode "\\.cr$"
:interpreter "crystal"
:config
2016-05-24 22:09:50 -04:00
(def-docset! crystal-mode ("crystal"))
(after! quickrun
(quickrun-add-command
"crystal" '((:command . "crystal")
2016-03-29 23:15:40 -04:00
(:exec . "%c %s")
(:description . "Run Crystal script"))
:mode 'crystal-mode)))
2015-08-27 23:25:35 -04:00
(provide 'module-crystal)
;;; module-crystal.el ends here