nix-community.nixvim/tests/test-sources/plugins/by-name/dotnet/default.nix

21 lines
305 B
Nix
Raw Normal View History

2024-12-09 23:14:57 -06:00
{
empty = {
plugins.dotnet.enable = true;
};
default = {
plugins.dotnet = {
enable = true;
settings = {
bootstrap = {
auto_bootstrap = true;
};
project_selection = {
path_display = "filename_first";
};
};
};
};
}