add overrides for vimPlugins.mason-tool-install-nvim and vimPlugins.mason-lspconfig-nvim

This commit is contained in:
The Hedgehog 2022-07-27 11:58:39 -04:00
parent 8ea667c3f1
commit bc7d5cea0a
No known key found for this signature in database
GPG Key ID: 8CDF3F7CAA53A0F5

View File

@ -598,6 +598,14 @@ self: super: {
'';
});
mason-lspconfig-nvim = super.mason-lspconfig-nvim.overrideAttrs (old: {
dependencies = with self; [ mason-nvim nvim-lspconfig ];
});
mason-tool-installer-nvim = super.mason-tool-installer-nvim.overrideAttrs (old: {
dependencies = with self; [ mason-nvim ];
});
meson = buildVimPluginFrom2Nix {
inherit (meson) pname version src;
preInstall = "cd data/syntax-highlighting/vim";