mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-13 10:44:34 +02:00
14 lines
316 B
Nix
14 lines
316 B
Nix
{ 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";
|
|
};
|
|
}
|