Skip to content

Commit

Permalink
Some terminals don't support true colors in stable release
Browse files Browse the repository at this point in the history
  • Loading branch information
dtinth committed Sep 5, 2021
1 parent 296cc5d commit 157443f
Showing 1 changed file with 22 additions and 11 deletions.
33 changes: 22 additions & 11 deletions starship.toml
Original file line number Diff line number Diff line change
@@ -1,34 +1,45 @@

[username]
format = "[$user]($style)[@](fg:#8b8685)"
# format = "[$user]($style)[@](fg:#8b8685)"
format = "[$user]($style)[@](fg:102)"
show_always = true
style_user = "#bbeeff"
# style_user = "fg:#bbeeff"
style_user = "fg:159"

[hostname]
format = "[$hostname]($style)[:](fg:#8b8685)"
# format = "[$hostname]($style)[:](fg:#8b8685)"
format = "[$hostname]($style)[:](fg:102)"
ssh_only = false
style = "#ffffaa"
# style = "fg:#ffffaa"
style = "fg:229"

[directory]
truncate_to_repo = false
style = "fg:#bbeeff"
# style = "fg:#bbeeff"
style = "fg:159"

[git_branch]
symbol = ""
style = "fg:#d7fc70"
format = "[#](fg:#8b8685)[$symbol$branch]($style) "
# style = "fg:#d7fc70"
style = "fg:191"
# format = "[#](fg:#8b8685)[$symbol$branch]($style) "
format = "[#](fg:102)[$symbol$branch]($style) "

[git_commit]
commit_hash_length = 4
tag_symbol = "[@](fg:#8b8685)"
# tag_symbol = "[@](fg:#8b8685)"
tag_symbol = "[@](fg:102)"

[package]
style = "fg:#8b8685"
# style = "fg:#8b8685"
style = "fg:102"
format = "[package@$version]($style) "

[nodejs]
style = "fg:#8b8685"
# style = "fg:#8b8685"
style = "fg:102"
format = "[node(@$version)]($style) "

[cmd_duration]
format = "[took](fg:#8b8685) [$duration]($style) "
# format = "[took](fg:#8b8685) [$duration]($style) "
format = "[took](fg:102) [$duration]($style) "

0 comments on commit 157443f

Please sign in to comment.