theme.yml 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. filekinds:
  2. normal:
  3. foreground: Blue
  4. directory:
  5. foreground: Blue
  6. symlink:
  7. foreground: Cyan
  8. executable:
  9. foreground: Green
  10. perms:
  11. user_read:
  12. foreground: Yellow
  13. is_bold: true
  14. user_write:
  15. foreground: Red
  16. is_bold: true
  17. user_execute_file:
  18. foreground: Green
  19. is_bold: true
  20. user_execute_other:
  21. foreground: Green
  22. is_bold: true
  23. group_read:
  24. foreground: Yellow
  25. group_write:
  26. foreground: Red
  27. group_execute:
  28. foreground: Green
  29. other_read:
  30. foreground: Yellow
  31. other_write:
  32. foreground: Red
  33. other_execute:
  34. foreground: Green
  35. filenames:
  36. # Just change the icon glyph
  37. Cargo.toml: {icon: {glyph: 🦀}}
  38. Cargo.lock: {icon: {glyph: 🦀}}
  39. extensions:
  40. # Change the filename color and icon
  41. rs: {filename: {foreground: Red}, icon: {glyph: 🦀}}
  42. # Change the icon glyph and color
  43. nix: {icon: {glyph: ❄, style: {foreground: White}}}
  44. icon_overrides:
  45. icons:
  46. filenames:
  47. Cargo.toml: {icon: 🦀}
  48. Cargo.lock: {icon: 🦀}
  49. extensions:
  50. rs: {icon: 🦀}
  51. nix: {icon: ❄, style: {foreground: White}}