1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-17 07:52:47 +01:00
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";
};
};
};
}