Skip to content

Commit 9248da3

Browse files
refaelshGaetanLepage
authored andcommitted
plugins/vim-repeat: init
1 parent 83aed0e commit 9248da3

File tree

3 files changed

+17
-0
lines changed

3 files changed

+17
-0
lines changed

plugins/default.nix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -220,6 +220,7 @@
220220
./utils/project-nvim.nix
221221
./utils/quickmath.nix
222222
./utils/refactoring.nix
223+
./utils/repeat.nix
223224
./utils/rest.nix
224225
./utils/sandwich.nix
225226
./utils/scope.nix

plugins/utils/repeat.nix

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
lib,
3+
...
4+
}:
5+
lib.nixvim.vim-plugin.mkVimPlugin {
6+
name = "repeat";
7+
originalName = "vim-repeat";
8+
package = "vim-repeat";
9+
10+
maintainers = [ lib.nixvim.maintainers.refaelsh ];
11+
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
empty = {
3+
plugins.repeat.enable = true;
4+
};
5+
}

0 commit comments

Comments
 (0)