Last active
February 4, 2024 18:02
-
-
Save fullmetalbrackets/4360cb9c513831993811e548c1ad2cb4 to your computer and use it in GitHub Desktop.
Starship Prompt Config (Windows Terminal)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ~/.config/starship.toml | |
[character] | |
success_symbol = "π¦(bold green)" | |
error_symbol = "π©(bold red) " | |
[cmd_duration] | |
min_time = 10_000 # Show command duration over 10,000 milliseconds (=10 sec) | |
format = " took [$duration]($style)" | |
[directory] | |
truncation_length = 100 | |
truncate_to_repo = false | |
format = "[$path]($style)[$lock_symbol]($lock_style) " | |
[git_branch] | |
format = " [$symbol$branch]($style) " | |
symbol = "π£ " | |
style = "bold yellow" | |
[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 = true | |
format = "π» [$hostname]($style) " | |
trim_at = "-" | |
style = "yellow" | |
[memory_usage] | |
format = "$symbol[${ram}( | ${swap})]($style) " | |
threshold = 70 | |
style = "bold dimmed white" | |
disabled = false | |
[package] | |
disabled = true | |
[time] | |
time_format = "%T" | |
format = "π $time($style) " | |
style = "bright-white" | |
disabled = false | |
[username] | |
format = "$user($style_user) " | |
style_user = "blue" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment