Skip to content

Commit f93cdcb

Browse files
HeitorAugustoLNkhaneliman
authored andcommitted
plugins/mini-surround: init
1 parent 3b14604 commit f93cdcb

File tree

2 files changed

+31
-0
lines changed

2 files changed

+31
-0
lines changed
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{ lib, ... }:
2+
lib.nixvim.plugins.mkNeovimPlugin {
3+
name = "mini-surround";
4+
moduleName = "mini.surround";
5+
packPathName = "mini.surround";
6+
7+
maintainers = [ lib.maintainers.HeitorAugustoLN ];
8+
9+
settingsExample = {
10+
n_lines = 50;
11+
respect_selection_type = true;
12+
search_method = "cover_or_next";
13+
};
14+
}
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
empty = {
3+
plugins.mini-surround.enable = true;
4+
};
5+
6+
example = {
7+
plugins.mini-surround = {
8+
enable = true;
9+
10+
settings = {
11+
n_lines = 50;
12+
respect_selection_type = true;
13+
search_method = "cover_or_next";
14+
};
15+
};
16+
};
17+
}

0 commit comments

Comments
 (0)