Finished hacker theme mostly and added some other configs

This commit is contained in:
ManOfGoldForever 2026-04-03 10:57:53 -04:00
parent 0c499ecbd6
commit ad06f5284e
91 changed files with 1928 additions and 3 deletions

View file

@ -0,0 +1,20 @@
[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" },
]