Last active
September 1, 2023 08:54
-
-
Save yingzwang/d511815ba859df6ab7d9cade9df3bf15 to your computer and use it in GitHub Desktop.
starship
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
# example ~/.config/starship.toml | |
# Don't print a new line at the start of the prompt | |
add_newline = false | |
format = """ | |
$directory\ | |
$aws\ | |
$git_branch\ | |
$git_status\ | |
$character""" | |
[aws] | |
format = "[$symbol$profile]($style) " | |
symbol = "β " | |
[git_branch] | |
format = "[$symbol$branch]($style) " | |
symbol = "π" | |
[git_status] | |
format = "[$all_status$ahead_behind]($style) " | |
untracked = "[β](red)" | |
modified = "[β](yellow)" | |
staged = "[β](green)" | |
deleted = "ποΈ" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment