Adding terraform plugin

This commit is contained in:
Martin Potier 2018-03-20 15:03:27 +02:00
parent 6ec0297968
commit 0eda2ddac9
1 changed files with 10 additions and 0 deletions

View File

@ -10,6 +10,16 @@ with pkgs;
let
plugins = let inherit (vimUtils) buildVimPluginFrom2Nix; in {
"vim-terraform" = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-terraform";
src = fetchFromGitHub {
owner = "hashivim";
repo = "vim-terraform";
rev = "76799270813db362b13a56f26cd34f668e9e17a4";
sha256 = "0jkxbk0hw3mcvigz3z2f2a91bizdanm392h32068s110bm1fa8xs";
};
dependencies = [];
};
"better-whitespace" = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "better-whitespace";
src = fetchgit {