indent-tools
URL: https://github.com/arsham/indent-tools.nvim/
Maintainers: Gaetan Lepage
Neovim plugin for dealing with indentations.
plugins.indent-tools.enable
Whether to enable indent-tools.
Type: boolean
Default:
false
Example:
true
Declared by:
plugins.indent-tools.package
The indent-tools package to use.
Type: package
Default:
pkgs.vimPlugins.indent-tools-nvim
Declared by:
plugins.indent-tools.autoLoad
Whether to automatically load indent-tools when neovim starts.
Type: boolean
Default:
false when lazy-loading is enabled.
Example:
false
Declared by:
plugins.indent-tools.callSetup
Whether to generate the standard require('indent-tools').setup(...) call for this plugin.
By default, this follows the plugin’s built-in behavior. Set this to false
to disable the generated setup call, or to true to force it even when the
plugin would only call it conditionally.
Type: null or boolean
Default:
null
Declared by:
plugins.indent-tools.settings
Options provided to the require('indent-tools').setup function.
Type: lua value
Default:
{ }
Example:
{
normal = {
down = false;
up = false;
};
textobj = {
ai = "aI";
ii = "iI";
};
}
Declared by: