Last active
July 21, 2023 13:30
-
-
Save baldawayash15/4f91801233fd949c79e25c3fde81ccaf to your computer and use it in GitHub Desktop.
Starship Custom Terminal Config
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
[aws] | |
symbol = " " | |
[c] | |
symbol = " " | |
[dart] | |
symbol = " " | |
[directory] | |
read_only = " " | |
style = "bold cyan" | |
home_symbol = " " | |
[docker_context] | |
symbol = " " | |
[git_branch] | |
symbol = " " | |
[golang] | |
symbol = " " | |
[haskell] | |
symbol = " " | |
[hg_branch] | |
symbol = " " | |
[java] | |
symbol = " " | |
[julia] | |
symbol = " " | |
[memory_usage] | |
symbol = " " | |
[nix_shell] | |
symbol = " " | |
[nodejs] | |
symbol = " " | |
detect_folders = ["node_modules"] | |
detect_files = ["package.json", ".node-version"] | |
detect_extensions = ["js", "mjs", "cjs", "ts", "mts", "cts"] | |
style = "bold green" | |
not_capable_style = "bold red" | |
[package] | |
symbol = " " | |
[python] | |
symbol = " " | |
[ruby] | |
symbol = " " | |
[rust] | |
symbol = " " | |
[php] | |
symbol = " " | |
detect_files = ["composer.json", ".php-version"] | |
detect_extensions = ["php"] | |
[git_status] | |
conflicted = "🏳" | |
ahead = "🏎💨" | |
behind = "😰" | |
diverged = "😵" | |
up_to_date = "✓" | |
untracked = "🤷" | |
stashed = "📦" | |
modified = "📝" | |
staged = '[++\($count\)](green)' | |
renamed = "👅" | |
deleted = "🗑" | |
[git_commit] | |
format = '[\($hash$tag\)]($style) ' | |
style = "bold green" | |
tag_symbol = "🔖 " | |
[git_state] | |
style = "bold yellow" | |
[shell] | |
disabled = false | |
powershell_indicator = "" | |
style = "green bold" | |
[username] | |
style_user = "white bold" | |
style_root = "black bold" | |
format = "user: [$user]($style) " | |
disabled = false | |
show_always = false | |
[battery] | |
full_symbol = " " | |
charging_symbol = " " | |
discharging_symbol = " " | |
empty_symbol = "" | |
[[battery.display]] | |
threshold = 30 | |
style = "bold red" | |
[[battery.display]] | |
threshold = 90 | |
style = "bold green" | |
[[battery.display]] | |
threshold = 50 | |
style = "bold orange" | |
[gcloud] | |
symbol = "️ " | |
[hostname] | |
ssh_only = false | |
format = "[$ssh_symbol](bold blue) on [$hostname](bold red) " | |
trim_at = ".companyname.com" | |
disabled = false | |
[character] | |
error_symbol = "[✖](bold red) " | |
success_symbol = "[❯](bold green)" | |
disabled = true | |
[line_break] | |
disabled = false |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment