plugins.dropbar.settings.icons.kinds.dir_icon

Directory icon and highlighting getter, set to empty string to disable.

Type: null or string or raw lua code

Default: null

Plugin default:

lib.nixvim.mkRaw ''
  function(_)
    return M.opts.icons.kinds.symbols.Folder, 'DropBarIconKindFolder'
  end
''

Declared by:

plugins.dropbar.settings.icons.kinds.file_icon

File icon and highlighting getter, set to empty string to disable.

Type: null or string or raw lua code

Default: null

Plugin default:

lib.nixvim.mkRaw ''
  function(path)
    return M.opts.icons.kinds.symbols.File, 'DropBarIconKindFile'
  end
''

Declared by:

plugins.dropbar.settings.icons.kinds.symbols

Table mapping the different kinds of symbols to their corresponding icons.

See :h dropbar-configuration-options-icons for the default value.

Type: null or (attribute set of string)

Default: null

Declared by: