Helix nixd LSP

This commit is contained in:
Andrea Ciceri 2024-07-25 16:41:38 +02:00
parent 7f52ad42cd
commit a9697956e4
Signed by: aciceri
SSH key fingerprint: SHA256:/AagBweyV4Hlfg9u092n8hbHwD5fcB6A3qhDiDA65Rg

View file

@ -13,5 +13,19 @@
true-color = true; # to make colors coherent when in ssh
};
};
languages = {
language = [
{
name = "nix";
language-servers = ["nixd"];
}
];
language-servers = [
{
name = "nixd";
command = "nixd";
}
];
};
};
}