This commit is contained in:
Kenneth Hoff 2025-06-19 12:34:15 +01:00 committed by GitHub
commit 8ab3cd5a91
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 20 additions and 0 deletions

View file

@ -0,0 +1,15 @@
{ lib, pkgs, ... }:
lib.nixvim.plugins.mkNeovimPlugin {
name = "roslyn";
packPathName = "roslyn.nvim";
package = "roslyn-nvim";
maintainers = [ lib.maintainers.GaetanLepage ];
extraConfig = {
plugins.roslyn.settings.exe = lib.mkDefault "Microsoft.CodeAnalysis.LanguageServer";
};
# TODO: Figure out how to add this package, as it's the source of the `Microsoft.CodeAnalysis.LanguageServer` command, which is required for the LSP to function
# home.packages = [ pkgs.roslyn-ls ];
}

View file

@ -0,0 +1,5 @@
{
empty = {
plugins.roslyn.enable = true;
};
}