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

33 lines
604 B
Nix
Raw Normal View History

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