12.nixvim/tests/test-sources/plugins/by-name/rzls/default.nix
2026-01-24 06:08:49 +00:00

21 lines
396 B
Nix

{
empty = {
plugins.roslyn.enable = true;
plugins.rzls.enable = true;
};
defaults = {
plugins.roslyn.enable = true;
plugins.rzls = {
enable = true;
settings = {
on_attach.__raw = ''
function()
return nil
end
'';
capabilities.__raw = "vim.lsp.protocol.make_client_capabilities()";
};
};
};
}