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

trailblazer

URL: https://github.com/LeonHeidelbach/trailblazer.nvim/

Maintainers: Austin Horstman


Creates and navigates persistent trail marks with optional session state.

plugins.trailblazer.enable

Whether to enable trailblazer.

Type: boolean

Default:

false

Example:

true

Declared by:

plugins.trailblazer.package

The trailblazer package to use.

Type: package

Default:

pkgs.vimPlugins.trailblazer-nvim

Declared by:

plugins.trailblazer.autoLoad

Whether to automatically load trailblazer when neovim starts.

Type: boolean

Default: false when lazy-loading is enabled.

Example:

false

Declared by:

plugins.trailblazer.callSetup

Whether to generate the standard require('trailblazer').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.trailblazer.settings

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

Type: lua value

Default:

{ }

Example:

{
  auto_save_trailblazer_state_on_exit = true;
  mappings = {
    nv = {
      motions = {
        new_trail_mark = "<leader>m";
      };
    };
  };
  trail_options = {
    current_trail_mark_mode = "buffer_local_line_sorted";
    mark_symbol = "●";
    newest_mark_symbol = "◆";
  };
}

Declared by: