vimPlugins.telescope-zoxide: init at 2021-10-21

main
Brian Leung 2 years ago
parent 0ed50dce50
commit 3ae12468e7
No known key found for this signature in database
GPG Key ID: 3ADC75F013D678F9
  1. 12
      pkgs/applications/editors/vim/plugins/generated.nix
  2. 11
      pkgs/applications/editors/vim/plugins/overrides.nix
  3. 1
      pkgs/applications/editors/vim/plugins/vim-plugin-names

@ -6712,6 +6712,18 @@ final: prev:
meta.homepage = "https://github.com/nvim-telescope/telescope-z.nvim/";
};
telescope-zoxide = buildVimPluginFrom2Nix {
pname = "telescope-zoxide";
version = "2021-10-21";
src = fetchFromGitHub {
owner = "jvgrootveld";
repo = "telescope-zoxide";
rev = "b51b7f4ba0e2a08bc764fb2ee39e0bc68eec79b5";
sha256 = "0dm7h00hz2qh73gfzypv1lm2vzk7nawp7wz1y1ar5nh6gg4zf2rl";
};
meta.homepage = "https://github.com/jvgrootveld/telescope-zoxide/";
};
telescope-nvim = buildVimPluginFrom2Nix {
pname = "telescope.nvim";
version = "2022-03-08";

@ -694,6 +694,17 @@ self: super: {
dependencies = with self; [ telescope-nvim ];
});
telescope-zoxide = super.telescope-zoxide.overrideAttrs (old: {
dependencies = with self; [ telescope-nvim ];
buildInputs = [ zoxide ];
postPatch = ''
substituteInPlace lua/telescope/_extensions/zoxide/config.lua \
--replace "zoxide query -ls" "${zoxide}/bin/zoxide query -ls"
'';
});
tup =
let
# Based on the comment at the top of https://github.com/gittup/tup/blob/master/contrib/syntax/tup.vim

@ -347,6 +347,7 @@ justincampbell/vim-eighties
justinj/vim-pico8-syntax
justinmk/vim-dirvish
justinmk/vim-sneak
jvgrootveld/telescope-zoxide
jvirtanen/vim-hcl
jvoorhis/coq.vim
KabbAmine/vCoolor.vim

Loading…
Cancel
Save