tardis
URL: https://github.com/fredehoey/tardis.nvim/
Maintainers: Frede Emil
Timetravel for neovim
plugins.tardis.enable
Whether to enable tardis.
Type: boolean
Default:
false
Example:
true
Declared by:
plugins.tardis.package
The tardis package to use.
Type: package
Default:
pkgs.vimPlugins.tardis-nvim
Declared by:
plugins.tardis.autoLoad
Whether to automatically load tardis when neovim starts.
Type: boolean
Default:
false when lazy-loading is enabled.
Example:
false
Declared by:
plugins.tardis.callSetup
Whether to generate the standard require('tardis-nvim').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.tardis.settings
Options provided to the require('tardis-nvim').setup function.
Type: lua value
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: