mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-07 15:54:31 +02:00
19 lines
270 B
Nix
19 lines
270 B
Nix
|
{
|
||
|
empty = {
|
||
|
plugins.mini-pairs.enable = true;
|
||
|
};
|
||
|
|
||
|
example = {
|
||
|
plugins.mini-pairs = {
|
||
|
enable = true;
|
||
|
settings = {
|
||
|
modes = {
|
||
|
insert = true;
|
||
|
command = true;
|
||
|
terminal = false;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|