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

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.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: