feat(ess): add +stan

Docs will be updated later, along with the rest of the pending docs
rewrite.
This commit is contained in:
Henrik Lissner 2021-10-18 11:43:07 +02:00
parent 388f59d9e0
commit 376f9b797c
2 changed files with 23 additions and 0 deletions

View file

@ -89,3 +89,18 @@
"m" #'ess-noweb-mark-chunk
"p" #'ess-noweb-previous-chunk
"n" #'ess-noweb-next-chunk))
(use-package! stan-mode
:when (featurep! +stan)
:hook (stan-mode . stan-mode-setup)
:hook (stan-mode . eldoc-stan-setup)
:init
(use-package! company-stan
:when (featurep! :completion company)
:hook (stan-mode . company-stan-setup))
(use-package! flycheck-stan
:when (featurep! :checkers syntax)
:hook (stan-mode . flycheck-stan-stanc2-setup)
:hook (stan-mode . flycheck-stan-stanc3-setup)))