-
Notifications
You must be signed in to change notification settings - Fork 0
/
starship.toml
71 lines (57 loc) · 1.35 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
67
68
69
70
71
format = """$battery$username@ $sudo$hostname - $directory$golang$rust$nodejs$elixir$git_branch$git_commit$git_state$git_status """
[battery]
full_symbol = "🔋 "
charging_symbol = "⚡️ "
discharging_symbol = "💀 "
[[battery.display]]
threshold = 50
style = "bold red"
[character]
success_symbol ="✅"
error_symbol = "❌"
[sudo]
style = 'bold green'
symbol = '👩💻 '
disabled = false
[golang]
format = "via [🏎️💨$version](bold cyan)"
[rust]
format = 'via [⚙️ $version](red bold)'
[elixir]
format = 'via [🔮$version](purple bold)'
[git_branch]
symbol = '🌱 '
truncation_length = 10
truncation_symbol = '...'
ignore_branches = ['master', 'main']
[git_commit]
commit_hash_length = 4
tag_symbol = '🔖 '
[git_state]
format = '[\($state( $progress_current of $progress_total)\)]($style) '
cherry_pick = '[🍒 PICKING](bold red)'
rebase ='[📏 REBASING](bold red)'
merge = '[🔃 MERGING]'
[git_status]
conflicted = '🏳'
ahead = '🏎💨'
behind = '😰'
diverged = '😵'
up_to_date = '✓'
untracked = '🤷'
stashed = '📦'
modified = '📝'
staged = '[++\($count\)](green)'
renamed = '👅'
deleted = '🗑'
[username]
style_user = "purple bold"
style_root = "red bold"
format = "[$user]($style) "
disabled = false
show_always = true
[hostname]
ssh_only = false
format = "[$hostname](bold cyan) "
disabled = false
ssh_symbol = "🌏 "