starship.toml (921B)
1 add_newline = false 2 command_timeout = 200 3 format = "[$hostname$directory$git_branch$git_commit$git_status$character]($style)" 4 5 [character] 6 error_symbol = "[!>](bold cyan)" 7 success_symbol = "[>](bold cyan)" 8 9 [directory] 10 truncation_length = 2 11 truncation_symbol = "…/" 12 format = '[$path]($style)[$read_only]($read_only_style)' 13 fish_style_pwd_dir_length = 2 14 15 [git_commit] 16 format = '[ \($tag]($style)' 17 tag_symbol = '' 18 only_detached = true 19 tag_disabled = false 20 style = "blue" 21 22 [git_branch] 23 format = '[ \($branch]($style)' 24 only_attached = true 25 style = "blue" 26 27 [git_status] 28 format = '[$all_status\)]($style)' 29 style = "blue" 30 ahead = "⇡${count}" 31 diverged = "⇕⇡${ahead_count}⇣${behind_count}" 32 behind = "⇣${count}" 33 conflicted = "" 34 up_to_date = "" 35 untracked = "?" 36 modified = "" 37 stashed = "" 38 staged = "" 39 renamed = "" 40 deleted = "" 41 42 [hostname] 43 format = '[@$hostname]($style) '