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

tardis

URL: https://github.com/FredeHoey/tardis.nvim

Maintainers: Frede Emil


Timetravel for neovim

plugins.tardis.enable

Whether to enable tardis.nvim.

Type: boolean

Default: false

Example: true

Declared by:

plugins.tardis.package

The tardis.nvim package to use.

Type: package

Default: pkgs.vimPlugins.tardis-nvim

Declared by:

plugins.tardis.autoLoad

Whether to automatically load tardis.nvim when neovim starts.

Type: boolean

Default: false when lazy-loading is enabled.

Example: false

Declared by:

plugins.tardis.settings

Options provided to the require('tardis-nvim').setup function.

Type: attribute set of anything

Default: { }

Example:

{
  keymap = {
    commit = "<C-g>";
    next = "<C-j>";
    prev = "<C-k>";
    quit = "q";
    revision_message = "<C-m>";
  };
  settings = {
    initial_revisions = 10;
    max_revisions = 256;
    show_commit_index = false;
  };
}

Declared by: