Update languages.toml to add astro-ls (#12939)
This commit is contained in:
parent
8cb0d869e6
commit
69f25a85da
2 changed files with 7 additions and 1 deletions
|
@ -4,7 +4,7 @@
|
|||
| adl | ✓ | ✓ | ✓ | |
|
||||
| agda | ✓ | | | |
|
||||
| amber | ✓ | | | |
|
||||
| astro | ✓ | | | |
|
||||
| astro | ✓ | | | `astro-ls` |
|
||||
| awk | ✓ | ✓ | | `awk-language-server` |
|
||||
| bash | ✓ | ✓ | ✓ | `bash-language-server` |
|
||||
| bass | ✓ | | | `bass` |
|
||||
|
|
|
@ -139,6 +139,11 @@ wasm-language-tools = { command = "wat_server" }
|
|||
command = "ansible-language-server"
|
||||
args = ["--stdio"]
|
||||
|
||||
[language-server.astro-ls]
|
||||
command = "astro-ls"
|
||||
args = [ "--stdio" ]
|
||||
config = { typescript = { tsdk = "node_modules/typescript/lib" } }
|
||||
|
||||
[language-server.lua-language-server]
|
||||
command = "lua-language-server"
|
||||
|
||||
|
@ -2632,6 +2637,7 @@ injection-regex = "astro"
|
|||
file-types = ["astro"]
|
||||
block-comment-tokens = { start = "<!--", end = "-->" }
|
||||
indent = { tab-width = 2, unit = " " }
|
||||
language-servers = [ "astro-ls" ]
|
||||
|
||||
[[grammar]]
|
||||
name = "astro"
|
||||
|
|
Loading…
Add table
Reference in a new issue