A NuGet Package Manager for Neovim
- Show latest version as diagnostics after opening or updating a
.csproj
file - Toggle "Include prerelease"
:NugetToggleIncludePrerelease
- Update all NuGet packages
- For a single project
- For all projects in a solution
-
nuget.config
support - Autocompletion for package versions while editing
.csproj
files - Manage packages solution-wide (similar to Visual Studio)
Using lazy.nvim
{
'Speiser/nuget.nvim',
dependencies = {
'nvim-lua/plenary.nvim',
},
config = function()
require('nuget').setup()
end,
}