mini-operators
URL: https://github.com/nvim-mini/mini.operators/
Maintainers: Heitor Augusto
plugins.mini-operators.enable
Whether to enable mini-operators.
Type: boolean
Default:
false
Example:
true
Declared by:
plugins.mini-operators.package
The mini-operators package to use.
Type: package
Default:
pkgs.vimPlugins.mini-operators
Declared by:
plugins.mini-operators.autoLoad
Whether to automatically load mini-operators when neovim starts.
Type: boolean
Default:
false when lazy-loading is enabled.
Example:
false
Declared by:
plugins.mini-operators.callSetup
Whether to generate the standard require('mini.operators').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.mini-operators.settings
Options provided to the require('mini.operators').setup function.
Type: lua value
Default:
{ }
Example:
{
evaluate = {
func = lib.nixvim.mkRaw "nil";
prefix = "g=";
};
exchange = {
prefix = "gx";
reindent_linewise = true;
};
multiply = {
func = lib.nixvim.mkRaw "nil";
prefix = "gm";
};
replace = {
prefix = "gr";
reindent_linewise = true;
};
sort = {
func = lib.nixvim.mkRaw "nil";
prefix = "gs";
};
}
Declared by: