helix.nix: fix nix language server

This commit is contained in:
Bloxx12 2025-04-29 13:57:19 +02:00
commit 9b56e8daaa

View file

@ -135,6 +135,10 @@
auto-format = true;
formatter = mark "md";
}
{
name = "nix";
language-servers = ["nixd" "nil"];
}
{
name = "qml";
language-servers = ["qmlls"];
@ -237,8 +241,12 @@
nil = {
command = getExe nil;
};
nixd = {
command = getExe nixd;
# alejandro
config.nil.formatting.command = ["${getExe alejandra}" "-q"];
config.nixd.formatting.command = ["${getExe alejandra}" "-q"];
};
typescript-language-server = {