Add vim-timedot plugin

This commit is contained in:
Martin Potier 2019-10-08 18:06:41 +03:00
parent 2dc4d0f66f
commit 2af5f97833
No known key found for this signature in database
GPG Key ID: D4DD957DBA4AD89E

View File

@ -47,6 +47,16 @@ let
}; };
dependencies = []; dependencies = [];
}; };
"vim-timedot" = buildVimPluginFrom2Nix {
pname = "vim-timedot";
version = "2019-09-15";
src = fetchFromGitHub {
owner = "steshaw";
repo = "vim-timedot";
rev = "6796d42978a4ad84abfe3a9a25c39fab6fbc041f";
sha256 = "1a2fdz1q1jinm6nc63x7f1wv7dq34qhy41xk4hfaarvp040bdsnl";
};
};
}; in vim_configurable.customize { }; in vim_configurable.customize {
name = "vim"; name = "vim";
vimrcConfig.packages.myVimPackage = with pkgs.vimPlugins; with plugins; { vimrcConfig.packages.myVimPackage = with pkgs.vimPlugins; with plugins; {
@ -71,6 +81,7 @@ let
vim-nix vim-nix
vim-orgmode vim-orgmode
vim-terraform vim-terraform
vim-timedot
vimtex vimtex
vimwiki vimwiki
]; ];