-
-
Save xxKeefer/94707d60c8edec6c0df245dcfe598e72 to your computer and use it in GitHub Desktop.
Starship configuration file
This file contains hidden or 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] | |
error_symbol = "[π :](bold red) " | |
success_symbol = "[π₯ :](bold green)" | |
[cmd_duration] | |
min_time = 10_000 # Show command duration over 10,000 milliseconds (=10 sec) | |
format = " took [$duration]($style)" | |
[directory] | |
truncation_length = 5 | |
format = "β β [$path]($style)[$lock_symbol]($lock_style) " | |
[git_branch] | |
format = " [$symbol$branch]($style) " | |
symbol = "πΏ " | |
style = "bold yellow" | |
[git_state] | |
progress_divider = " of " | |
[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 | |
[package] | |
disabled = true | |
[python] | |
format = "[$symbol$version]($style) " | |
style = "bold green" | |
[time] | |
time_format = "%T" | |
format = "[π $time]($style) " | |
style = "bold bright-green" | |
disabled = false | |
[username] | |
style_user = "bold dimmed blue" | |
show_always = false |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment