Skip to content

Instantly share code, notes, and snippets.

@henriqwe
Last active March 11, 2024 16:42
Show Gist options
  • Save henriqwe/f2674d72bce595ea3a2c36ea250a4621 to your computer and use it in GitHub Desktop.
Save henriqwe/f2674d72bce595ea3a2c36ea250a4621 to your computer and use it in GitHub Desktop.
starship.toml
# ~/.config/starship.toml
[battery]
full_symbol = "πŸ”‹"
charging_symbol = "πŸ”Œ"
discharging_symbol = "⚑"
[[battery.display]]
threshold = 30
style = "bold red"
[character]
error_symbol = "[βœ–](bold red) "
[cmd_duration]
min_time = 10_000 # Show command duration over 10,000 milliseconds (=10 sec)
format = "[⏳ $duration ](bold yellow)"
[directory]
truncation_length = 5
format = "[$path]($style)[$lock_symbol]($lock_style) "
[git_branch]
format = " [$symbol$branch]($style) "
symbol = "ξ‚  "
style = "bold purple"
[git_commit]
commit_hash_length = 8
style = "bold white"
[git_state]
format = '[\($state( $progress_current of $progress_total)\)]($style) '
[git_status]
conflicted = "βš”οΈ "
#ahead = "🏎️ πŸ’¨ Γ—${count}"
#behind = "🐒 Γ—${count}"
#diverged = "πŸ”± 🏎️ πŸ’¨ Γ—${ahead_count} 🐒 Γ—${behind_count}"
#untracked = "πŸ›€οΈ Γ—${count}"
#stashed = "πŸ“¦ "
#modified = "πŸ“ Γ—${count}"
#staged = "πŸ—ƒοΈ Γ—${count}"
#renamed = "πŸ“› Γ—${count}"
#deleted = "πŸ—‘οΈ Γ—${count}"
style = "bright-white"
format = "$all_status$ahead_behind"
[hostname]
ssh_only = false
format = "<[$hostname]($style)>"
trim_at = "-"
style = "bold dimmed white"
disabled = true
[memory_usage]
format = "$symbol[${ram}( | ${swap})]($style) "
threshold = 70
style = "bold dimmed white"
disabled = false
[package]
disabled = true
[time]
time_format = "| %b %d | %I:%M%P ️"
format = "$time($style) "
style = "bright-white"
disabled = false
[username]
style_user = "bold dimmed blue"
show_always = false
[nodejs]
format = " [$version](bold green) "
detect_files = ["package.json", ".node-version"]
detect_folders = ["node_modules"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment