vimPlugins.fzf-checkout-vim: init at 2021-07-21
This commit is contained in:
parent
64538f9255
commit
7ae5ab5942
3 changed files with 21 additions and 0 deletions
|
@ -1713,6 +1713,18 @@ final: prev:
|
|||
meta.homepage = "https://github.com/rktjmp/fwatch.nvim/";
|
||||
};
|
||||
|
||||
fzf-checkout-vim = buildVimPluginFrom2Nix {
|
||||
name = "fzf-checkout.vim";
|
||||
version = "2021-07-21";
|
||||
src = fetchFromGitHub {
|
||||
owner = "stsewd";
|
||||
repo = "fzf-checkout.vim";
|
||||
rev = "4d5ecae74460de8fed4f743f6bd53c4c31d32797";
|
||||
sha256 = "0mia7p2z8l3lrid0v8ml4i8y190gh4ll9898yyg4gcghhxp83zpm";
|
||||
};
|
||||
meta.homepage = "https://github.com/stsewd/fzf-checkout.vim";
|
||||
};
|
||||
|
||||
fzf-lsp-nvim = buildVimPluginFrom2Nix {
|
||||
pname = "fzf-lsp-nvim";
|
||||
version = "2021-06-20";
|
||||
|
|
|
@ -251,6 +251,14 @@ self: super: {
|
|||
'';
|
||||
});
|
||||
|
||||
fzf-checkout-vim = super.fzf-checkout-vim.overrideAttrs (old: {
|
||||
# The plugin has a makefile which tries to run tests in a docker container.
|
||||
# This prevents it.
|
||||
prePatch = ''
|
||||
rm Makefile
|
||||
'';
|
||||
});
|
||||
|
||||
fzf-vim = super.fzf-vim.overrideAttrs (old: {
|
||||
dependencies = with self; [ fzfWrapper ];
|
||||
});
|
||||
|
|
|
@ -645,6 +645,7 @@ steelsojka/completion-buffers
|
|||
steelsojka/pears.nvim
|
||||
stefandtw/quickfix-reflector.vim
|
||||
stephpy/vim-yaml
|
||||
stsewd/fzf-checkout.vim
|
||||
stevearc/aerial.nvim
|
||||
sunaku/vim-dasht
|
||||
sunjon/Shade.nvim
|
||||
|
|
Loading…
Reference in a new issue