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.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: