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

tiny-glimmer

URL: https://github.com/rachartier/tiny-glimmer.nvim/

Maintainers: Arne Zillhardt

plugins.tiny-glimmer.enable

Whether to enable tiny-glimmer.

Type: boolean

Default: false

Example: true

Declared by:

plugins.tiny-glimmer.package

The tiny-glimmer package to use.

Type: package

Default: pkgs.vimPlugins.tiny-glimmer-nvim

Declared by:

plugins.tiny-glimmer.autoLoad

Whether to automatically load tiny-glimmer when neovim starts.

Type: boolean

Default: false when lazy-loading is enabled.

Example: false

Declared by:

plugins.tiny-glimmer.settings

Options provided to the require('tiny-glimmer').setup function.

Type: lua value

Default: { }

Example:

{
  animations = {
    pulse = {
      chars_for_max_duration = 10;
      max_duration = 400;
      min_duration = 200;
    };
    rainbow = {
      chars_for_max_duration = 10;
    };
  };
  overwrite = {
    paste = {
      enabled = false;
    };
    yank = {
      default_animation = "rainbow";
    };
  };
  refresh_interval_ms = 5;
}

Declared by: