Unverified Commit bc7d5cea authored by The Hedgehog's avatar The Hedgehog
Browse files

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

parent 8ea667c3
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
@@ -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";