Unverified Commit 2bce0928 authored by Austin Horstman's avatar Austin Horstman
Browse files

vimPlugins.easy-dotnet-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 4951398e
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1107,11 +1107,11 @@ assertNoAdditions {
  easy-dotnet-nvim = super.easy-dotnet-nvim.overrideAttrs {
    dependencies = with self; [
      plenary-nvim
      telescope-nvim
    ];
    checkInputs = with self; [
      # Pickers, can use telescope or fzf-lua
      # Pickers, can use telescope, fzf-lua, or snacks
      fzf-lua
      telescope-nvim
    ];
  };