-
Notifications
You must be signed in to change notification settings - Fork 0
/
starship.toml
54 lines (43 loc) · 1.03 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
format = """
$time$all$character
"""
command_timeout = 50
[package]
disabled = true
[nodejs]
disabled = true
[python]
format = ' with [${symbol}(${version} ) (\($virtualenv\) )]($style)'
style = "bold green"
[rust]
format = ' with [$symbol($version )]($style)'
style = 'bold red'
[username]
style_user = "bold blue"
show_always = true
[time]
disabled = false
format = '🕙 [\[ $time \]]($style) '
time_format = "%T"
[git_status]
conflicted = "⚔️ "
ahead = "🏎️ 💨 ×${count}"
behind = "🐢 ×${count}"
diverged = "🔱 🏎️ 💨 ×${ahead_count} 🐢 ×${behind_count}"
untracked = "🛤️ ×${count}"
stashed = "📦 "
modified = "📝 ×${count}"
staged = "🗃️ ×${count}"
renamed = "📛 ×${count}"
deleted = "🗑️ ×${count}"
style = "bright-white"
format = "$all_status$ahead_behind"
[character]
success_symbol = "[➜](bold green)"
error_symbol = "[➜](bold red)"
[memory_usage]
format = "- using $symbol [${ram_pct}]($style) "
symbol = "💾"
threshold = -1
style = "bold dimmed white"
disabled = false