plugins.indent-blankline.settings

Options provided to the require('indent-blankline').setup function.

Type: attribute set of anything

Default: { }

Example:

{
  exclude = {
    buftypes = [
      "terminal"
      "quickfix"
    ];
    filetypes = [
      ""
      "checkhealth"
      "help"
      "lspinfo"
      "packer"
      "TelescopePrompt"
      "TelescopeResults"
      "yaml"
    ];
  };
  indent = {
    char = "│";
  };
  scope = {
    show_end = false;
    show_exact_scope = true;
    show_start = false;
  };
}

Declared by:

plugins.indent-blankline.settings.debounce

Sets the amount indent-blankline debounces refreshes in milliseconds.

Type: null or unsigned integer, meaning >=0, or raw lua code

Default: null

Plugin default: 200

Declared by: