-
-
Save chrisciampoli/fc890c6416d5b89c8d3294bde1ce5edb 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] | |
use_symbol_for_status = true # Show "โ" when the command faild | |
[hostname] | |
ssh_only = false | |
prefix = "โฎ " | |
suffix = "โฏ" | |
style = "bold dimmed white" | |
disabled = true | |
[username] | |
style_user = "bold dimmed blue" | |
show_always = true | |
[directory] | |
truncation_length = 5 | |
[time] | |
disabled = false | |
style = "bright-white" | |
format = "๐ %T" | |
[memory_usage] | |
show_percentage = true | |
show_swap = true | |
threshold = 30 | |
style = "bold dimmed green" | |
disabled = false | |
[git_branch] | |
symbol = "๐ฃ " | |
style = "bold yellow" | |
[git_status] | |
conflicted = "โ๏ธ " | |
ahead = "๐๏ธ ๐จ " | |
behind = "๐ข " | |
diverged = "๐ฑ " | |
untracked = "๐ค๏ธ " | |
stashed = "๐ฆ " | |
modified = "๐ " | |
staged = "๐๏ธ " | |
renamed = "๐ " | |
deleted = "๐๏ธ " | |
prefix = "with " | |
suffix = "" | |
style = "bright-white" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment