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

marks

URL: https://github.com/chentoast/marks.nvim/


A better user experience for viewing and interacting with Neovim marks.

plugins.marks.enable

Whether to enable marks.

Type: boolean

Default: false

Example: true

Declared by:

plugins.marks.package

The marks package to use.

Type: package

Default: pkgs.vimPlugins.marks-nvim

Declared by:

plugins.marks.autoLoad

Whether to automatically load marks when neovim starts.

Type: boolean

Default: false when lazy-loading is enabled.

Example: false

Declared by:

plugins.marks.settings

Options provided to the require('marks').setup function.

Type: open submodule of attribute set of anything

Default: { }

Example:

{
  cyclic = true;
  mappings = {
    delete = "<Leader>md";
    delete_buf = "<Leader>mc";
    delete_line = "<Leader>mD";
    next = "<Leader>mn";
    prev = "<Leader>mp";
    set = "<Leader>mM";
    toggle = "<Leader>mm";
  };
  refreshInterval = 150;
}

Declared by: