1
0
mirror of https://github.com/kmein/niveum synced 2026-03-19 19:41:08 +01:00

nvim: reorganize plugins

This commit is contained in:
Kierán Meinhardt
2019-08-23 10:27:28 +02:00
parent 57c0187386
commit 870d8a69e9
9 changed files with 93 additions and 64 deletions

View File

@@ -0,0 +1,10 @@
{ vimUtils, fetchFromGitHub }:
(vimUtils.buildVimPluginFrom2Nix rec {
name = "vim-fetch";
src = fetchFromGitHub {
owner = "wsdjeg";
repo = "vim-fetch";
rev = "76c08586e15e42055c9c21321d9fca0677442ecc";
sha256 = "0avcqjcqvxgj00r477ps54rjrwvmk5ygqm3qrzghbj9m1gpyp2kz";
};
})