starship.toml 805 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. # Don't print a new line at the start of the prompt
  2. add_newline = false
  3. [hostname]
  4. ssh_only = false
  5. disabled = false
  6. style = "bold green"
  7. [memory_usage]
  8. show_percentage = true
  9. show_swap = true
  10. threshold = -1
  11. symbol = " "
  12. style = "bold dimmed green"
  13. [git_branch]
  14. symbol = "🌱 "
  15. truncation_length = 8
  16. truncation_symbol = ""
  17. [git_status]
  18. conflicted = "🏳"
  19. ahead = "🏎💨"
  20. behind = "😰"
  21. diverged = "😵"
  22. untracked = "🤷‍"
  23. stashed = "📦"
  24. modified = "📝"
  25. staged.value = "++"
  26. staged.style = "green"
  27. staged_count.enabled = true
  28. staged_count.style = "green"
  29. renamed = "👅"
  30. deleted = "🗑"
  31. [battery]
  32. full_symbol = "🔋"
  33. charging_symbol = "⚡️"
  34. discharging_symbol = "💀"
  35. [[battery.display]]
  36. threshold = 10
  37. style = "bold red"
  38. [[battery.display]]
  39. threshold = 40
  40. style = "bold yellow"