1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-25 03:39:40 +01:00

plugins/rzls: init module

This commit is contained in:
Austin Horstman 2025-10-04 20:56:38 -05:00
parent af69a39a5f
commit ca7f98d936
2 changed files with 69 additions and 0 deletions

View file

@ -0,0 +1,29 @@
{
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()'';
};
};
};
}