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

indent-blankline

URL: https://github.com/lukas-reineke/indent-blankline.nvim/

Maintainers: Gaetan Lepage


This plugin adds indentation guides to Neovim.

plugins.indent-blankline.enable

Whether to enable indent-blankline.

Type: boolean

Default: false

Example: true

Declared by:

plugins.indent-blankline.package

The indent-blankline package to use.

Type: package

Default: pkgs.vimPlugins.indent-blankline-nvim

Declared by:

plugins.indent-blankline.autoLoad

Whether to automatically load indent-blankline when neovim starts.

Type: boolean

Default: false when lazy-loading is enabled.

Example: false

Declared by:

plugins.indent-blankline.settings

Options provided to the require('ibl').setup function.

Type: lua value

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: