chore: Added starship 454a54ef
Steve Simkins · 2025-06-25 14:27 1 file(s) · +46 −0
starship.toml (added) +46 −0
1 +
format = """
2 +
$username\
3 +
$hostname\
4 +
$directory\
5 +
$git_branch\
6 +
$git_state\
7 +
$git_status\
8 +
$cmd_duration\
9 +
$line_break\
10 +
$python\
11 +
$character"""
12 +
13 +
[directory]
14 +
style = "blue"
15 +
16 +
[character]
17 +
success_symbol = "[❯](purple)"
18 +
error_symbol = "[❯](red)"
19 +
vimcmd_symbol = "[❮](green)"
20 +
21 +
[git_branch]
22 +
format = "[$branch]($style)"
23 +
style = "bright-black"
24 +
25 +
[git_status]
26 +
format = "[[(*$conflicted$untracked$modified$staged$renamed$deleted)](218) ($ahead_behind$stashed)]($style)"
27 +
style = "cyan"
28 +
conflicted = "​"
29 +
untracked = "​"
30 +
modified = "​"
31 +
staged = "​"
32 +
renamed = "​"
33 +
deleted = "​"
34 +
stashed = "≡"
35 +
36 +
[git_state]
37 +
format = '\([$state( $progress_current/$progress_total)]($style)\) '
38 +
style = "bright-black"
39 +
40 +
[cmd_duration]
41 +
format = "[$duration]($style) "
42 +
style = "yellow"
43 +
44 +
[python]
45 +
format = "[$virtualenv]($style) "
46 +
style = "bright-black"