helix.nix: fix nix language server
This commit is contained in:
parent
c02522ffc4
commit
9b56e8daaa
1 changed files with 9 additions and 1 deletions
|
@ -135,6 +135,10 @@
|
||||||
auto-format = true;
|
auto-format = true;
|
||||||
formatter = mark "md";
|
formatter = mark "md";
|
||||||
}
|
}
|
||||||
|
{
|
||||||
|
name = "nix";
|
||||||
|
language-servers = ["nixd" "nil"];
|
||||||
|
}
|
||||||
{
|
{
|
||||||
name = "qml";
|
name = "qml";
|
||||||
language-servers = ["qmlls"];
|
language-servers = ["qmlls"];
|
||||||
|
@ -237,8 +241,12 @@
|
||||||
|
|
||||||
nil = {
|
nil = {
|
||||||
command = getExe nil;
|
command = getExe nil;
|
||||||
|
};
|
||||||
|
|
||||||
|
nixd = {
|
||||||
|
command = getExe nixd;
|
||||||
# alejandro
|
# alejandro
|
||||||
config.nil.formatting.command = ["${getExe alejandra}" "-q"];
|
config.nixd.formatting.command = ["${getExe alejandra}" "-q"];
|
||||||
};
|
};
|
||||||
|
|
||||||
typescript-language-server = {
|
typescript-language-server = {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue