Unverified Commit c5b01def authored by Austin Horstman's avatar Austin Horstman
Browse files

vimPlugins.leetcode-nvim: fix hard depenency on pickers



Plugin offers configuration to choose which picker you'd like, don't
need to pollute environment with extra deps.

Signed-off-by: default avatarAustin Horstman <khaneliman12@gmail.com>
parent 2bce0928
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -1628,11 +1628,13 @@ assertNoAdditions {
  };

  leetcode-nvim = super.leetcode-nvim.overrideAttrs {
    checkInputs = [ self.snacks-nvim ];
    checkInputs = with self; [
      snacks-nvim
      telescope-nvim
    ];
    dependencies = with self; [
      nui-nvim
      plenary-nvim
      telescope-nvim
    ];

    doInstallCheck = true;