vimade
URL: https://github.com/TaDaa/vimade/
Maintainers: Gaetan Lepage
Vimade let’s you dim, fade, tint, animate, and customize colors in your windows and buffers for Neovim.
plugins.vimade.enable
Whether to enable vimade.
Type: boolean
Default:
false
Example:
true
Declared by:
plugins.vimade.package
The vimade package to use.
Type: package
Default:
pkgs.vimPlugins.vimade
Declared by:
plugins.vimade.autoLoad
Whether to automatically load vimade when neovim starts.
Type: boolean
Default:
false when lazy-loading is enabled.
Example:
false
Declared by:
plugins.vimade.callSetup
Whether to generate the standard require('vimade').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.vimade.settings
Options provided to the require('vimade').setup function.
Type: lua value
Default:
{ }
Example:
{
fadelevel = 0.7;
recipe = [
"duo"
{
animate = true;
}
];
tint = {
bg = {
intensity = 0.1;
rgb = [
255
255
255
];
};
fg = {
intensity = 0.1;
rgb = [
255
255
255
];
};
};
}
Declared by: