nix-community.nixvim/tests/test-sources/plugins/lsp/nixd.nix
Gaetan Lepage 4f6e90212c tests/lsp: re-enable tests for nixd
This reverts commit 544fc5d60b.
2024-03-20 13:12:59 +01:00

32 lines
596 B
Nix

{
example = {
plugins.lsp = {
enable = true;
servers.nixd = {
enable = true;
settings = {
eval = {
target = {
args = ["foo" "bar"];
installable = "";
};
depth = 0;
workers = 3;
};
formatting = {
command = "nixpkgs-fmt";
};
options = {
enable = true;
target = {
args = ["yes" "no" "maybe"];
installable = "";
};
};
};
};
};
};
}