mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-28 11:30:06 +02:00
plugins/vim-repeat: init
This commit is contained in:
parent
83aed0e6a3
commit
9248da3c3b
3 changed files with 17 additions and 0 deletions
|
@ -220,6 +220,7 @@
|
|||
./utils/project-nvim.nix
|
||||
./utils/quickmath.nix
|
||||
./utils/refactoring.nix
|
||||
./utils/repeat.nix
|
||||
./utils/rest.nix
|
||||
./utils/sandwich.nix
|
||||
./utils/scope.nix
|
||||
|
|
11
plugins/utils/repeat.nix
Normal file
11
plugins/utils/repeat.nix
Normal file
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
lib,
|
||||
...
|
||||
}:
|
||||
lib.nixvim.vim-plugin.mkVimPlugin {
|
||||
name = "repeat";
|
||||
originalName = "vim-repeat";
|
||||
package = "vim-repeat";
|
||||
|
||||
maintainers = [ lib.nixvim.maintainers.refaelsh ];
|
||||
}
|
5
tests/test-sources/plugins/utils/repeat.nix
Normal file
5
tests/test-sources/plugins/utils/repeat.nix
Normal file
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
empty = {
|
||||
plugins.repeat.enable = true;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue