nix-community.nixvim/tests/test-sources/plugins/by-name/indent-tools/default.nix
2025-04-30 22:49:38 +02:00

40 lines
599 B
Nix

{
empty = {
plugins.indent-tools.enable = true;
};
defaults = {
plugins.indent-tools = {
enable = true;
settings = {
normal = {
up = "[i";
down = "]i";
repeatable = true;
};
textobj = {
ii = "ii";
ai = "ai";
};
};
};
};
example = {
plugins.indent-tools = {
enable = true;
settings = {
textobj = {
ii = "iI";
ai = "aI";
};
normal = {
up = false;
down = false;
};
};
};
};
}