Skip to content

Commit 84249a9

Browse files
committed
plugins/vim-numbertoggle: init
1 parent 4df5746 commit 84249a9

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
@@ -141,6 +141,7 @@
141141
./ui/image.nix
142142
./ui/neoscroll.nix
143143
./ui/noice.nix
144+
./ui/numbertoggle.nix
144145
./ui/specs.nix
145146
./ui/statuscol.nix
146147
./ui/transparent.nix

plugins/ui/numbertoggle.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 = "numbertoggle";
7+
originalName = "vim-numbertoggle";
8+
package = "vim-numbertoggle";
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.autosource.enable = true;
4+
};
5+
}

0 commit comments

Comments
 (0)