diff options
Diffstat (limited to 'starship')
| -rw-r--r-- | starship/.config/starship.toml | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/starship/.config/starship.toml b/starship/.config/starship.toml new file mode 100644 index 0000000..14c4ecf --- /dev/null +++ b/starship/.config/starship.toml @@ -0,0 +1,26 @@ +add_newline = false + +format = """($git_branch $git_status +)$directory$character""" + +[directory] +style = "bright-black" + +[git_branch] +symbol = " " +style = "bright-black" +format = "[$symbol$branch]($style)" + +[git_status] +style = "bright-black" +format = "([$all_status$ahead_behind]($style))" +conflicted = "[=](red)" +ahead = "[⇡](blue)" +behind = "[⇣](blue)" +diverged = "[⇕](magenta)" +untracked = "[?](blue)" +stashed = '[\$](white)' +modified = "[!](yellow)" +staged = "[+](green)" +renamed = "[»](cyan)" +deleted = "[✘](red)" |
