dotnet.nvim
1.0.0
A little Neovim plugin for improving the .NET dev experience in Neovim, written completely in Lua
{
'MoaidHathot/dotnet.nvim',
cmd = "DotnetUI",
opts = {},
}
use {
'MoaidHathot/dotnet.nvim',
config = function()
require("dotnet").setup({})
end
}
dotnet.nvim
comes with the following defaults:
{
bootstrap = {
auto_bootstrap = true, -- Automatically call "bootstrap" when creating a new file, adding a namespace and a class to the files
},
project_selection = {
path_display = 'filename_first' -- Determines how file paths are displayed. All of Telescope's path_display options are supported
}
}
Telescope's valid path_display
. The options may vary depending on the version of Telescope you have installed.
:DotnetUI new_item
:DotnetUI file bootstrap
:DotnetUI project package add
:DotnetUI project package remove
:DotnetUI project reference add
:DotnetUI project reference remove