2024-12-09 23:14:57 -06:00
|
|
|
{ lib, ... }:
|
2024-12-22 09:58:27 +00:00
|
|
|
lib.nixvim.plugins.mkNeovimPlugin {
|
2024-12-09 23:14:57 -06:00
|
|
|
name = "dotnet";
|
2024-12-13 08:27:14 -06:00
|
|
|
packPathName = "dotnet.nvim";
|
2024-12-09 23:14:57 -06:00
|
|
|
package = "dotnet-nvim";
|
|
|
|
|
|
|
|
maintainers = [ lib.maintainers.khaneliman ];
|
|
|
|
|
|
|
|
settingsOptions = {
|
|
|
|
bootstrap = {
|
|
|
|
auto_bootstrap = lib.nixvim.defaultNullOpts.mkBool true ''
|
|
|
|
Automatically call "bootstrap" when creating a new file, adding a namespace and a class to the files.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
project_selection = {
|
|
|
|
path_display = lib.nixvim.defaultNullOpts.mkStr "filename_first" ''
|
|
|
|
Determines how file paths are displayed. All of Telescope's path_display options are supported.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
settingsExample = {
|
|
|
|
bootstrap = {
|
|
|
|
auto_bootstrap = false;
|
|
|
|
};
|
|
|
|
project_selection = {
|
|
|
|
path_display = "truncate";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|