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

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

19 lines
270 B
Nix
Raw Normal View History

2025-05-24 17:54:48 -03:00
{
empty = {
plugins.mini-pairs.enable = true;
};
example = {
plugins.mini-pairs = {
enable = true;
settings = {
modes = {
insert = true;
command = true;
terminal = false;
};
};
};
};
}