nix-community.nixvim/tests/test-sources/plugins/lsp/nixd.nix
Gaetan Lepage 54ebe3b0ee plugins/lsp: add omnisharp language server
Co-authored-by: garaiza-93 <57430880+garaiza-93@users.noreply.github.com>
2023-07-20 08:24:33 +02: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 = "";
};
};
};
};
};
};
}