Adding terraform plugin
This commit is contained in:
parent
6ec0297968
commit
0eda2ddac9
1 changed files with 10 additions and 0 deletions
|
@ -10,6 +10,16 @@ with pkgs;
|
||||||
|
|
||||||
let
|
let
|
||||||
plugins = let inherit (vimUtils) buildVimPluginFrom2Nix; in {
|
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
|
"better-whitespace" = buildVimPluginFrom2Nix { # created by nix#NixDerivation
|
||||||
name = "better-whitespace";
|
name = "better-whitespace";
|
||||||
src = fetchgit {
|
src = fetchgit {
|
||||||
|
|
Loading…
Reference in a new issue