forked from mirrors/nixpkgs
Merge pull request #67160 from ldelelis/vim-plugins-shougo-defx
vimPlugins.defx-nvim: init at 2019-08-19
This commit is contained in:
commit
79989ebc40
|
@ -775,6 +775,17 @@ let
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
defx-nvim = buildVimPluginFrom2Nix {
|
||||||
|
pname = "defx-nvim";
|
||||||
|
version = "2019-08-19";
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "Shougo";
|
||||||
|
repo = "defx.nvim";
|
||||||
|
rev = "dbd2dceea914ecaa71d24a1d6036f1981becdca5";
|
||||||
|
sha256 = "1gl18s39v7k1p6z7hchq1k16f6f1i2ccq76as562c0nvn68jdqi8";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
delimitMate = buildVimPluginFrom2Nix {
|
delimitMate = buildVimPluginFrom2Nix {
|
||||||
pname = "delimitMate";
|
pname = "delimitMate";
|
||||||
version = "2017-06-19";
|
version = "2017-06-19";
|
||||||
|
|
|
@ -166,6 +166,10 @@ self: super: {
|
||||||
'';
|
'';
|
||||||
});
|
});
|
||||||
|
|
||||||
|
defx-nvim = super.defx-nvim.overrideAttrs(old: {
|
||||||
|
dependencies = with super; [ nvim-yarp ];
|
||||||
|
});
|
||||||
|
|
||||||
deoplete-fish = super.deoplete-fish.overrideAttrs(old: {
|
deoplete-fish = super.deoplete-fish.overrideAttrs(old: {
|
||||||
dependencies = with super; [ deoplete-nvim vim-fish ];
|
dependencies = with super; [ deoplete-nvim vim-fish ];
|
||||||
});
|
});
|
||||||
|
|
|
@ -340,6 +340,7 @@ sebastianmarkow/deoplete-rust
|
||||||
sheerun/vim-polyglot
|
sheerun/vim-polyglot
|
||||||
Shougo/context_filetype.vim
|
Shougo/context_filetype.vim
|
||||||
Shougo/denite.nvim
|
Shougo/denite.nvim
|
||||||
|
Shougo/defx.nvim
|
||||||
Shougo/deol.nvim
|
Shougo/deol.nvim
|
||||||
Shougo/deoplete-lsp
|
Shougo/deoplete-lsp
|
||||||
Shougo/deoplete.nvim
|
Shougo/deoplete.nvim
|
||||||
|
|
Loading…
Reference in a new issue