nuget.nvim

A NuGet Package Manager for Neovim

MIT License

Stars
4
Committers
1

nuget.nvim

A NuGet Package Manager for Neovim

Features

  • 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)

Installation

Using lazy.nvim

{
  'Speiser/nuget.nvim',
  dependencies = {
    'nvim-lua/plenary.nvim',
  },
  config = function()
    require('nuget').setup()
  end,
}