forked from mirrors/nixpkgs
vimPlugins.telescope-zoxide: init at 2021-10-21
This commit is contained in:
parent
0ed50dce50
commit
3ae12468e7
|
@ -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…
Reference in a new issue