mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-13 18:54:30 +02:00
15 lines
316 B
Nix
15 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";
|
||
|
};
|
||
|
}
|