mirror of
https://github.com/nix-community/nixvim.git
synced 2025-08-03 01:25:22 +02:00
15 lines
504 B
Nix
15 lines
504 B
Nix
{ 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 ];
|
|
}
|