This commit is contained in:
Heitor Augusto 2025-06-20 13:17:17 +00:00 committed by GitHub
commit c70cf47ee8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 31 additions and 0 deletions

View file

@ -0,0 +1,14 @@
{ lib, ... }:
lib.nixvim.plugins.mkNeovimPlugin {
name = "mini-surround";
moduleName = "mini.surround";
packPathName = "mini.surround";
maintainers = [ lib.maintainers.HeitorAugustoLN ];
settingsExample = {
n_lines = 50;
respect_selection_type = true;
search_method = "cover_or_next";
};
}

View file

@ -0,0 +1,17 @@
{
empty = {
plugins.mini-surround.enable = true;
};
example = {
plugins.mini-surround = {
enable = true;
settings = {
n_lines = 50;
respect_selection_type = true;
search_method = "cover_or_next";
};
};
};
}