mirror of
https://github.com/nix-community/nixvim.git
synced 2025-11-08 11:36:07 +01:00
15 lines
274 B
Nix
15 lines
274 B
Nix
{ lib, ... }:
|
|
lib.nixvim.plugins.mkNeovimPlugin {
|
|
name = "mini-pairs";
|
|
moduleName = "mini.pairs";
|
|
|
|
maintainers = [ lib.maintainers.HeitorAugustoLN ];
|
|
|
|
settingsExample = {
|
|
modes = {
|
|
insert = true;
|
|
command = true;
|
|
terminal = false;
|
|
};
|
|
};
|
|
}
|