nix-community.nixvim/tests/test-sources/plugins/by-name/mini-surround/default.nix
2025-06-22 18:58:25 +00:00

17 lines
271 B
Nix

{
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";
};
};
};
}