mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-22 08:53:28 +02:00
30 lines
686 B
Nix
30 lines
686 B
Nix
{
|
|
example = {
|
|
plugins = {
|
|
treesitter.enable = true;
|
|
neotest = {
|
|
enable = true;
|
|
|
|
adapters.dotnet = {
|
|
enable = true;
|
|
|
|
settings = {
|
|
dap = {
|
|
args = {justMyCode = false;};
|
|
adapter_name = "netcoredbg";
|
|
};
|
|
custom_attributes = {
|
|
xunit = ["MyCustomFactAttribute"];
|
|
nunit = ["MyCustomTestAttribute"];
|
|
mstest = ["MyCustomTestMethodAttribute"];
|
|
};
|
|
dotnet_additional_args = [
|
|
"--verbosity detailed"
|
|
];
|
|
discovery_root = "project";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|