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

feat(neovim): add icalendar.vim

This commit is contained in:
Kierán Meinhardt
2020-09-20 23:29:27 +02:00
parent c2dd2f97ef
commit 13bee034fa
3 changed files with 20 additions and 15 deletions

View File

@@ -0,0 +1,10 @@
{ vimUtils, fetchFromGitHub }:
(vimUtils.buildVimPluginFrom2Nix {
name = "icalendar.vim";
src = fetchFromGitHub {
owner = "vim-scripts";
repo = "icalendar.vim";
rev = "542fff45385b1b5ad9781b0ad4878ba3b7ee9d5f";
sha256 = "0sl8rfk004cagi12ghlcqz0wci1xf5raglm50pkan79jk7srckhq";
};
})