nix-community.nixvim/tests/test-sources/plugins/by-name/dotnet/default.nix
2024-12-09 23:27:45 -06:00

20 lines
305 B
Nix

{
empty = {
plugins.dotnet.enable = true;
};
default = {
plugins.dotnet = {
enable = true;
settings = {
bootstrap = {
auto_bootstrap = true;
};
project_selection = {
path_display = "filename_first";
};
};
};
};
}