about summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorThe Hedgehog <me@thehedgehog.me>2022-07-27 11:58:39 -0400
committerThe Hedgehog <me@thehedgehog.me>2023-01-04 16:05:07 -0500
commitbc7d5cea0aa5e24c097d301630a105b8938ee9ed (patch)
tree639fac3dc04231c07d17c4de7ac3598517d5d325 /pkgs/applications
parent8ea667c3f1a5a3a82b60ced067353b0d34593502 (diff)
add overrides for vimPlugins.mason-tool-install-nvim and vimPlugins.mason-lspconfig-nvim
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/editors/vim/plugins/overrides.nix8
1 files changed, 8 insertions, 0 deletions
diff --git a/pkgs/applications/editors/vim/plugins/overrides.nix b/pkgs/applications/editors/vim/plugins/overrides.nix
index e94ac82659d78..8d5f6bcd27d34 100644
--- a/pkgs/applications/editors/vim/plugins/overrides.nix
+++ b/pkgs/applications/editors/vim/plugins/overrides.nix
@@ -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";