nix-community.nixvim/plugins/by-name/mini-surround/default.nix
2025-06-22 18:58:25 +00:00

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";
};
}