Skip to content

Instantly share code, notes, and snippets.

@CelesteGH
Created June 19, 2022 16:29
Show Gist options
  • Save CelesteGH/6e30ee89a5fa91343552a1dcfdde90f9 to your computer and use it in GitHub Desktop.
Save CelesteGH/6e30ee89a5fa91343552a1dcfdde90f9 to your computer and use it in GitHub Desktop.
starship Conf
# ~/.config/starship.toml
add_newline = true
[battery]
full_symbol = "πŸ”‹"
charging_symbol = "πŸ”Œ"
discharging_symbol = "⚑"
[[battery.display]]
threshold = 30
style = "bold red"
[character]
error_symbol = "[βœ–](bold red) "
[cmd_duration]
min_time = 3_000 # Show command duration over 10,000 milliseconds (=10 sec)
format = " took [$duration]($style)"
[directory]
truncation_length = 5
truncation_symbol = ".../"
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 = false
format = "<[$hostname]($style)> "
trim_at = "-"
style = "bold dimmed white"
ssh_symbol = "🌏 "
disabled = false
[jobs]
symbol = "+ "
number_threshold = 4
symbol_threshold = 0
disabled = false
[line_break]
disabled = false
[memory_usage]
format = "$symbol[${ram}( | ${swap})]($style) "
threshold = 50
style = "bold dimmed white"
disabled = false
[package]
format = "is [$symbol$version]($style) "
version_format = "v${raw}"
display_private = true
disabled = false
[status]
style = "bg:blue"
symbol = "πŸ”΄ "
not_executable_symbol = "🚫 "
not_found_symbol = "πŸ” "
sigint_symbol = "🧱 "
signal_symbol = "⚑ "
success_symbol = "🟒 SUCCESS"
format = '[\[$symbol$common_meaning$signal_name$maybe_int\]]($style) '
map_symbol = true
recognize_signal_code = true
pipestatus = true
pipestatus_format = "\\[$pipestatus\\] => [$symbol$common_meaning$signal_name$maybe_int]($style)"
disabled = false
[sudo]
format = "[as $symbol]($style)"
style = "bold green"
symbol = "πŸ‘©<200d>πŸ’» "
disabled = false
[time]
time_format = "%T"
use_12hr = false
format = "πŸ•™ $time($style) "
style = "bright-white"
disabled = false
[username]
style_user = "bold dimmed blue"
format = "[$user]($style) @ "
show_always = true
disabled = false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment