mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-03 13:54:29 +02:00
Some checks are pending
Publish every Git push to main to FlakeHub / flakehub-publish (push) Waiting to run
Publish every git push to Flakestry / publish-flake (push) Waiting to run
Documentation / Version info (push) Waiting to run
Documentation / Build (push) Blocked by required conditions
Documentation / Combine builds (push) Blocked by required conditions
Documentation / Deploy (push) Blocked by required conditions
32 lines
865 B
Nix
32 lines
865 B
Nix
{ lib, ... }:
|
|
lib.nixvim.plugins.mkNeovimPlugin {
|
|
name = "dotnet";
|
|
packPathName = "dotnet.nvim";
|
|
package = "dotnet-nvim";
|
|
description = ".NET Neovim plugin for improving the .NET dev experience.";
|
|
|
|
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";
|
|
};
|
|
};
|
|
}
|