nix-community.nixvim/plugins/by-name/roslyn/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
504 B
Nix
Raw Normal View History

2025-04-07 19:52:30 +02:00
{ 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 ];
}