nix-community.nixvim/tests/test-sources/plugins/lsp/language-servers/nixd.nix

40 lines
708 B
Nix
Raw Normal View History

{
2023-06-13 09:39:54 +02:00
example = {
plugins.lsp = {
enable = true;
servers.nixd = {
enable = true;
2023-06-13 09:39:54 +02:00
settings = {
eval = {
target = {
2024-05-05 19:39:35 +02:00
args = [
"foo"
"bar"
];
2023-06-13 09:39:54 +02:00
installable = "";
};
depth = 0;
workers = 3;
};
formatting = {
command = "nixpkgs-fmt";
};
options = {
enable = true;
target = {
2024-05-05 19:39:35 +02:00
args = [
"yes"
"no"
"maybe"
];
2023-06-13 09:39:54 +02:00
installable = "";
};
};
};
};
};
};
}