mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +02:00
41 lines
599 B
Nix
41 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;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|