theme.yml 971 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. # NOTE: not all unicode glyphs support color changes
  42. rs: {filename: {foreground: Red}, icon: {glyph: 🦀}}
  43. # Change the icon glyph and color
  44. nix: {icon: {glyph: ❄, style: {foreground: White}}}