feat: roc editor support

This commit is contained in:
Matthew Ryan Dillon 2024-12-01 19:27:57 -05:00
parent e5accddcba
commit 2cd087b7c2

View file

@ -27,3 +27,30 @@ environment = { "PYENV_VERSION" = "pyright" }
name = "python"
language-servers = ["pyright"]
{{- end }}
[language-server.roc-ls]
command = "roc_language_server"
[[language]]
name = "roc"
scope = "source.roc"
injection-regex = "roc"
file-types = ["roc"]
shebangs = ["roc"]
roots = []
comment-token = "#"
language-servers = ["roc-ls"]
indent = { tab-width = 2, unit = " " }
auto-format = true
formatter = { command = "roc", args =[ "format", "--stdin", "--stdout"]}
[language.auto-pairs]
'(' = ')'
'{' = '}'
'[' = ']'
'"' = '"'
[[grammar]]
name = "roc"
source = { git = "https://github.com/faldor20/tree-sitter-roc.git", rev = "ef46edd0c03ea30a22f7e92bc68628fb7231dc8a" }