20 lines
589 B
TOML
20 lines
589 B
TOML
[filetype]
|
|
rules = [
|
|
# Directories (trailing slash in name matches dirs)
|
|
{ name = "*/", fg = "#ef934d" },
|
|
# Executables
|
|
{ is = "exec", fg = "#7ec97e" },
|
|
# Symlinks
|
|
{ is = "link", fg = "#71b4d6" },
|
|
{ is = "orphan", fg = "#f16e65" },
|
|
# Archives
|
|
{ mime = "application/{zip,rar,7z*,tar,gzip,xz,zstd,bzip*,lzma,compress,archive,cpio}", fg = "#e8c97e" },
|
|
# Images
|
|
{ mime = "image/*", fg = "#f4decd" },
|
|
# Audio/Video
|
|
{ mime = "{audio,video}/*", fg = "#bd93f9" },
|
|
# Documents/Text
|
|
{ mime = "text/*", fg = "#f4decd" },
|
|
# Fallback
|
|
{ name = "*", fg = "#c8c8c8" },
|
|
]
|