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"))
|
2016-03-28 21:57:59 -04:00
|
|
|
(after! quickrun
|
|
|
|
(quickrun-add-command
|
|
|
|
"crystal" '((:command . "crystal")
|
2016-03-29 23:15:40 -04:00
|
|
|
(:exec . "%c %s")
|
2016-03-28 21:57:59 -04:00
|
|
|
(:description . "Run Crystal script"))
|
|
|
|
:mode 'crystal-mode)))
|
2015-08-27 23:25:35 -04:00
|
|
|
|
|
|
|
(provide 'module-crystal)
|
|
|
|
;;; module-crystal.el ends here
|