Nix language support in Zed
Options: https://github.com/nix-community/nixd/blob/main/nixd/docs/configuration.md
{
"lsp": {
"nixd": {
"settings": {
"diagnostic": {
"suppress": [ "sema-extra-with" ]
}
}
}
}
}
Options: https://github.com/oxalica/nil/blob/main/docs/configuration.md
{
"lsp": {
"nil": {
"settings": {
"diagnostics": {
"ignored": [ "unused_binding" ]
}
}
}
}
}
{
"languages": {
"Nix": {
"language_servers": [ "nixd", "!nil" ],
}
}
}
{
"languages": {
"Nix": {
"language_servers": [ "nil", "!nixd" ],
}
}
}