mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-14 11:14:36 +02:00
17 lines
271 B
Nix
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";
|
|
};
|
|
};
|
|
};
|
|
}
|