mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-07 15:54:31 +02:00
16 lines
305 B
Nix
16 lines
305 B
Nix
{ 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;
|
|
};
|
|
};
|
|
}
|