vimPlugins.fuzzy-nvim: init at 2022-02-20
This commit is contained in:
parent
fdaa8fc610
commit
e05dc87e41
3 changed files with 17 additions and 0 deletions
|
@ -2938,6 +2938,18 @@ final: prev:
|
||||||
meta.homepage = "https://github.com/BeneCollyridam/futhark-vim/";
|
meta.homepage = "https://github.com/BeneCollyridam/futhark-vim/";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
fuzzy-nvim = buildVimPluginFrom2Nix {
|
||||||
|
pname = "fuzzy.nvim";
|
||||||
|
version = "2022-02-20";
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "tzachar";
|
||||||
|
repo = "fuzzy.nvim";
|
||||||
|
rev = "d5fee69b54ef400f0ccedf37917c4782e8929424";
|
||||||
|
sha256 = "1xnmwmbrjsfj3v4vk57gcf4l3wl9n8jks50ds8gaawz5bpy54yff";
|
||||||
|
};
|
||||||
|
meta.homepage = "https://github.com/tzachar/fuzzy.nvim/";
|
||||||
|
};
|
||||||
|
|
||||||
fwatch-nvim = buildVimPluginFrom2Nix {
|
fwatch-nvim = buildVimPluginFrom2Nix {
|
||||||
pname = "fwatch.nvim";
|
pname = "fwatch.nvim";
|
||||||
version = "2021-07-25";
|
version = "2021-07-25";
|
||||||
|
|
|
@ -298,6 +298,10 @@ self: super: {
|
||||||
'';
|
'';
|
||||||
});
|
});
|
||||||
|
|
||||||
|
fuzzy-nvim = super.fuzzy-nvim.overrideAttrs (old: {
|
||||||
|
dependencies = with self; [ telescope-fzy-native-nvim ];
|
||||||
|
});
|
||||||
|
|
||||||
fzf-checkout-vim = super.fzf-checkout-vim.overrideAttrs (old: {
|
fzf-checkout-vim = super.fzf-checkout-vim.overrideAttrs (old: {
|
||||||
# The plugin has a makefile which tries to run tests in a docker container.
|
# The plugin has a makefile which tries to run tests in a docker container.
|
||||||
# This prevents it.
|
# This prevents it.
|
||||||
|
|
|
@ -245,6 +245,7 @@ https://github.com/rafamadriz/friendly-snippets/,,
|
||||||
https://github.com/raghur/fruzzy/,,
|
https://github.com/raghur/fruzzy/,,
|
||||||
https://github.com/shumphrey/fugitive-gitlab.vim/,,
|
https://github.com/shumphrey/fugitive-gitlab.vim/,,
|
||||||
https://github.com/BeneCollyridam/futhark-vim/,,
|
https://github.com/BeneCollyridam/futhark-vim/,,
|
||||||
|
https://github.com/tzachar/fuzzy.nvim/,HEAD,
|
||||||
https://github.com/rktjmp/fwatch.nvim/,,
|
https://github.com/rktjmp/fwatch.nvim/,,
|
||||||
https://github.com/stsewd/fzf-checkout.vim/,,
|
https://github.com/stsewd/fzf-checkout.vim/,,
|
||||||
https://github.com/monkoose/fzf-hoogle.vim/,HEAD,
|
https://github.com/monkoose/fzf-hoogle.vim/,HEAD,
|
||||||
|
|
Loading…
Reference in a new issue