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:
parent
af69a39a5f
commit
ca7f98d936
2 changed files with 69 additions and 0 deletions
29
tests/test-sources/plugins/by-name/rzls/default.nix
Normal file
29
tests/test-sources/plugins/by-name/rzls/default.nix
Normal 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()'';
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue