nix-community.nixvim/tests/test-sources/plugins/by-name/mini-surround/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
271 B
Nix
Raw Normal View History

2025-05-24 16:46:50 -03:00
{
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";
};
};
};
}