mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-20 16:15:43 +02:00
40 lines
599 B
Nix
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;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|