-
Notifications
You must be signed in to change notification settings - Fork 0
/
starship.toml
67 lines (54 loc) · 1.31 KB
/
starship.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# Get editor completions based on the config schema
"$schema" = 'https://starship.rs/config-schema.json'
add_newline = false
format = """
$username\
$hostname\
$directory\
$fill\
$git_branch\
$git_state\
$git_status\
$time\
$line_break $character"""
[username]
show_always = true
style_user = "bright-blue"
format = "[$user]($style)"
[hostname]
ssh_only = false
style = "bright-black"
format = "[ 🌀 $hostname]($style) "
[directory]
style = "blue"
truncation_length = 5
truncate_to_repo = false
format = "$path(bright-white)"
[character]
success_symbol = "[>](bold bright-black) "
error_symbol = "[>](bold bright-black) "
vimcmd_symbol = "[:](bold bright-green) "
[fill]
symbol = " "
[git_branch]
format = "[$branch(:$remote_branch)]($style) "
style = "bright-blue"
[git_state]
format = '[$state \($progress_current/$progress_total\)]($style) '
[git_status]
style = "green"
untracked = "[$count U](red)[ / ](white)"
modified = "[$count M](yellow)"
staged = "[ / ](white)[$count S](green)"
diverged = '\[!!!\] '
ahead = '\[$count ahead\] '
behind = '\[$count behind\] '
format = '[$ahead_behind](purple)$untracked$modified$staged --(bright-black) '
[cmd_duration]
format = '[\($duration\)]($style)'
style = "bright-yellow"
[time]
disabled = false
style = "bright-black"
utc_time_offset = "0"
format = '[$time UTC]($style)'