1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-17 16:02:48 +01:00
nixvim/tests/test-sources/plugins/by-name/rzls/default.nix
saygo-png baa99016bc treewide: remove outdated broken package markings
Signed-off-by: saygo-png <saygo.mail@proton.me>
2025-10-24 23:14:15 +00:00

21 lines
398 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()'';
};
};
};
}