mirror of https://github.com/helix-editor/helix
feat(lsp): add yaml lsp (#2234)
parent
2c7f770aa9
commit
1c1ba006ae
|
@ -80,5 +80,5 @@
|
||||||
| typescript | ✓ | | ✓ | `typescript-language-server` |
|
| typescript | ✓ | | ✓ | `typescript-language-server` |
|
||||||
| vue | ✓ | | | `vls` |
|
| vue | ✓ | | | `vls` |
|
||||||
| wgsl | ✓ | | | |
|
| wgsl | ✓ | | | |
|
||||||
| yaml | ✓ | | ✓ | |
|
| yaml | ✓ | | ✓ | `yaml-language-server` |
|
||||||
| zig | ✓ | | ✓ | `zls` |
|
| zig | ✓ | | ✓ | `zls` |
|
||||||
|
|
|
@ -644,6 +644,7 @@ file-types = ["yml", "yaml"]
|
||||||
roots = []
|
roots = []
|
||||||
comment-token = "#"
|
comment-token = "#"
|
||||||
indent = { tab-width = 2, unit = " " }
|
indent = { tab-width = 2, unit = " " }
|
||||||
|
language-server = { command = "yaml-language-server", args = ["--stdio"] }
|
||||||
injection-regex = "yml|yaml"
|
injection-regex = "yml|yaml"
|
||||||
|
|
||||||
[[grammar]]
|
[[grammar]]
|
||||||
|
|
Loading…
Reference in New Issue