emacsorphanage/quickrun@c6ce1f3 -> emacsorphanage/quickrun@ce7383c Crystal support was added to quickrun upstream.
21 lines
467 B
EmacsLisp
21 lines
467 B
EmacsLisp
;;; lang/crystal/config.el -*- lexical-binding: t; -*-
|
|
|
|
(after! crystal-mode
|
|
(set-lookup-handlers! 'crystal-mode
|
|
:definition #'crystal-def-jump
|
|
:references #'crystal-tool-imp))
|
|
|
|
|
|
(use-package! flycheck-crystal
|
|
:when (featurep! :checkers syntax)
|
|
:after crystal-mode)
|
|
|
|
|
|
(use-package! flycheck-ameba
|
|
:when (featurep! :checkers syntax)
|
|
:after crystal-mode
|
|
:config (flycheck-ameba-setup))
|
|
|
|
|
|
(use-package! inf-crystal
|
|
:commands crystal-switch-to-inf)
|