Update languages.toml - add nixd, closes #10734 (#10767)

This commit is contained in:
Kiara Grouwstra 2024-08-09 17:35:29 +02:00 committed by GitHub
parent e884daea41
commit 3b306fa022
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 2 deletions

View file

@ -134,7 +134,7 @@
| nasm | ✓ | ✓ | | | | nasm | ✓ | ✓ | | |
| nickel | ✓ | | ✓ | `nls` | | nickel | ✓ | | ✓ | `nls` |
| nim | ✓ | ✓ | ✓ | `nimlangserver` | | nim | ✓ | ✓ | ✓ | `nimlangserver` |
| nix | ✓ | ✓ | | `nil` | | nix | ✓ | ✓ | | `nil`, `nixd` |
| nu | ✓ | | | `nu` | | nu | ✓ | | | `nu` |
| nunjucks | ✓ | | | | | nunjucks | ✓ | | | |
| ocaml | ✓ | | ✓ | `ocamllsp` | | ocaml | ✓ | | ✓ | `ocamllsp` |

View file

@ -61,6 +61,7 @@ mojo-lsp = { command = "mojo-lsp-server" }
nil = { command = "nil" } nil = { command = "nil" }
nimlangserver = { command = "nimlangserver" } nimlangserver = { command = "nimlangserver" }
nimlsp = { command = "nimlsp" } nimlsp = { command = "nimlsp" }
nixd = { command = "nixd" }
nls = { command = "nls" } nls = { command = "nls" }
nu-lsp = { command = "nu", args = [ "--lsp" ] } nu-lsp = { command = "nu", args = [ "--lsp" ] }
ocamllsp = { command = "ocamllsp" } ocamllsp = { command = "ocamllsp" }
@ -886,7 +887,7 @@ injection-regex = "nix"
file-types = ["nix"] file-types = ["nix"]
shebangs = [] shebangs = []
comment-token = "#" comment-token = "#"
language-servers = [ "nil" ] language-servers = [ "nil", "nixd" ]
indent = { tab-width = 2, unit = " " } indent = { tab-width = 2, unit = " " }
[[grammar]] [[grammar]]