Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

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