mini-jump
URL: https://github.com/nvim-mini/mini.jump/
Maintainers: Heitor Augusto
plugins.mini-jump.enable
Whether to enable mini-jump.
Type: boolean
Default:
false
Example:
true
Declared by:
plugins.mini-jump.package
The mini-jump package to use.
Type: package
Default:
pkgs.vimPlugins.mini-jump
Declared by:
plugins.mini-jump.autoLoad
Whether to automatically load mini-jump when neovim starts.
Type: boolean
Default:
false when lazy-loading is enabled.
Example:
false
Declared by:
plugins.mini-jump.callSetup
Whether to generate the standard require('mini.jump').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-jump.settings
Options provided to the require('mini.jump').setup function.
Type: lua value
Default:
{ }
Example:
{
delay = {
highlight = 250;
idle_stop = 10000000;
};
mappings = {
backward = "F";
backward_till = "T";
forward = "f";
forward_till = "t";
repeat_jump = ";";
};
silent = false;
}
Declared by: