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

mini-icons

URL: https://github.com/nvim-mini/mini.icons/

Maintainers: Heitor Augusto

plugins.mini-icons.enable

Whether to enable mini-icons.

Type: boolean

Default:

false

Example:

true

Declared by:

plugins.mini-icons.package

The mini-icons package to use.

Type: package

Default:

pkgs.vimPlugins.mini-icons

Declared by:

plugins.mini-icons.autoLoad

Whether to automatically load mini-icons when neovim starts.

Type: boolean

Default: false when lazy-loading is enabled.

Example:

false

Declared by:

plugins.mini-icons.callSetup

Whether to generate the standard require('mini.icons').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.mini-icons.mockDevIcons

Whether to tell mini.icons to emulate nvim-web-devicons for plugins that don’t natively support it.

When enabled, you don’t need to set plugins.web-devicons.enable. This will replace the need for it.

Type: boolean

Default:

false

Example:

true

Declared by:

plugins.mini-icons.settings

Options provided to the require('mini.icons').setup function.

Type: lua value

Default:

{ }

Example:

{
  extension = {
    lua = {
      hl = "Special";
    };
  };
  file = {
    "init.lua" = {
      glyph = "";
      hl = "MiniIconsGreen";
    };
  };
  style = "glyph";
}

Declared by: