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.callSetup
Whether to generate the standard require('tiny-glimmer').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.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: