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-jump2d

URL: https://github.com/nvim-mini/mini.jump2d/

Maintainers: Heitor Augusto

plugins.mini-jump2d.enable

Whether to enable mini-jump2d.

Type: boolean

Default: false

Example: true

Declared by:

plugins.mini-jump2d.package

The mini-jump2d package to use.

Type: package

Default: pkgs.vimPlugins.mini-jump2d

Declared by:

plugins.mini-jump2d.autoLoad

Whether to automatically load mini-jump2d when neovim starts.

Type: boolean

Default: false when lazy-loading is enabled.

Example: false

Declared by:

plugins.mini-jump2d.settings

Options provided to the require('mini.jump2d').setup function.

Type: lua value

Default: { }

Example:

{
  allowed_lines = {
    blank = true;
    cursor_after = true;
    cursor_at = true;
    cursor_before = true;
    fold = true;
  };
  allowed_windows = {
    current = true;
    not_current = true;
  };
  hooks = {
    after_jump = lib.nixvim.mkRaw "nil";
    before_start = lib.nixvim.mkRaw "nil";
  };
  labels = "abcdefghijklmnopqrstuvwxyz";
  mappings = {
    start_jumping = "<CR>";
  };
  silent = false;
  spotter = lib.nixvim.mkRaw "nil";
  view = {
    dim = false;
    n_steps_ahead = 0;
  };
}

Declared by: