Skip to content

Latest commit

 

History

History
39 lines (31 loc) · 841 Bytes

icons.toml.md

File metadata and controls

39 lines (31 loc) · 841 Bytes

icons.toml

This file is used to configure file/directory icons.

NOTE: To display icons correctly you need Nerd Fonts.

The are four sections in this file:

  • defaults - Used for fallback icons either file or directory.
  • directory_exact - Used to match the exact directory name. e.g. node_modules will match exactly node_modules directory only.
  • file_exact - Used to match exact file names.
  • ext - Used to match file names by their extension.

Each section accepts key/value pairs, key as target and value as the icon.

defaults example

[defaults]
file = ""
directory = ""

file_exact example

".gitignore" = ""
LICENSE = ""
Makefile = ""
Dockerfile = ""
# ...

ext example

js = ""
docx = ""
rs = ""
# ...