feat: roc editor support
This commit is contained in:
parent
e5accddcba
commit
2cd087b7c2
1 changed files with 27 additions and 0 deletions
|
@ -27,3 +27,30 @@ environment = { "PYENV_VERSION" = "pyright" }
|
||||||
name = "python"
|
name = "python"
|
||||||
language-servers = ["pyright"]
|
language-servers = ["pyright"]
|
||||||
{{- end }}
|
{{- 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" }
|
||||||
|
|
Loading…
Add table
Reference in a new issue