Merge pull request #19803 from offlinehacker/pkgs/vim-plugins/add/auto-pairs+editorconfig

Add autopairs and editorconfig vim plugins
This commit is contained in:
Arseniy Seroka 2016-10-24 13:03:27 +03:00 committed by GitHub
commit 6a2fd2276c
2 changed files with 24 additions and 0 deletions

View File

@ -2038,4 +2038,26 @@ rec {
dependencies = [];
};
auto-pairs = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "auto-pairs-2016-07-17";
src = fetchgit {
url = "git://github.com/jiangmiao/auto-pairs";
rev = "1b3a1efb078fdf74d4013308b63de57dfda0cc8e";
sha256 = "1g5gb9xvc9xw3rxg8p4w3qcsdl3xfpi5ax380916aq237kmrnzdk";
};
dependencies = [];
};
editorconfig-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "editorconfig-vim-2016-07-16";
src = fetchgit {
url = "git://github.com/editorconfig/editorconfig-vim";
rev = "a459b8cfef00100da40fd69c8ae92c4d1e63e1d2";
sha256 = "03slzk7jgr348f59pxghmd9giwla63lxmwvripg99zrlgl0pvp5g";
};
dependencies = [];
};
}

View File

@ -165,3 +165,5 @@
"vimwiki"
"vinegar"
"vundle"
"github:jiangmiao/auto-pairs"
"github:editorconfig/editorconfig-vim"