1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-08 19:46:06 +01:00
nixvim/tests/test-sources/plugins/by-name/rzls/default.nix
2025-10-06 16:38:18 +00:00

29 lines
742 B
Nix

{
empty = {
# TODO: 2025-10-03
# Transient dependency `vmr` has a build failure
# https://github.com/NixOS/nixpkgs/issues/431811
dependencies.roslyn_ls.enable = false;
plugins.roslyn.enable = true;
plugins.rzls.enable = true;
};
defaults = {
# TODO: 2025-10-03
# Transient dependency `vmr` has a build failure
# https://github.com/NixOS/nixpkgs/issues/431811
dependencies.roslyn_ls.enable = false;
plugins.roslyn.enable = true;
plugins.rzls = {
enable = true;
settings = {
on_attach.__raw = ''
function()
return nil
end
'';
capabilities.__raw = ''vim.lsp.protocol.make_client_capabilities()'';
};
};
};
}