plugins.barbar.settings.icons.gitsigns

Gitsigns icons.

Type: null or (attribute set of ((attribute set of anything) or raw lua code))

Default: null

Plugin default:

{
  added = {
    enabled = true;
    icon = "+";
  };
  changed = {
    enabled = true;
    icon = "~";
  };
  deleted = {
    enabled = true;
    icon = "-";
  };
}

Declared by:

plugins.barbar.settings.icons.gitsigns.<name>.enabled

Enables showing git changes of this type. Requires |gitsigns.nvim|.

Type: null or boolean or raw lua code

Default: null

Plugin default: true

plugins.barbar.settings.icons.gitsigns.<name>.icon

The icon which accompanies the number of git status.

To disable the icon but still show the count, set to an empty string.

Type: null or string or raw lua code

Default: null