mini-visits
URL: https://github.com/nvim-mini/mini.visits/
Maintainers: Heitor Augusto
plugins.mini-visits.enable
Whether to enable mini-visits.
Type: boolean
Default:
false
Example:
true
Declared by:
plugins.mini-visits.package
The mini-visits package to use.
Type: package
Default:
pkgs.vimPlugins.mini-visits
Declared by:
plugins.mini-visits.autoLoad
Whether to automatically load mini-visits when neovim starts.
Type: boolean
Default:
false when lazy-loading is enabled.
Example:
false
Declared by:
plugins.mini-visits.callSetup
Whether to generate the standard require('mini.visits').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-visits.settings
Options provided to the require('mini.visits').setup function.
Type: lua value
Default:
{ }
Example:
{
list = {
filter = lib.nixvim.mkRaw "nil";
sort = lib.nixvim.mkRaw "nil";
};
silent = false;
store = {
autowrite = true;
normalize = lib.nixvim.mkRaw "nil";
path = lib.nixvim.mkRaw "vim.fn.stdpath('data') .. '/mini-visits-index'";
};
track = {
delay = 1000;
event = "BufEnter";
};
}
Declared by: