nix-community.nixvim/plugins/by-name/mini-pairs/default.nix

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

17 lines
305 B
Nix
Raw Normal View History

2025-05-24 17:54:48 -03:00
{ lib, ... }:
lib.nixvim.plugins.mkNeovimPlugin {
name = "mini-pairs";
moduleName = "mini.pairs";
packPathName = "mini.pairs";
maintainers = [ lib.maintainers.HeitorAugustoLN ];
settingsExample = {
modes = {
insert = true;
command = true;
terminal = false;
};
};
}