-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstarship.toml
83 lines (70 loc) · 1.54 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
72
73
74
75
76
77
78
79
80
81
82
83
format = """
[](#444444)\
$gcloud\
[](bg:#73cef4 fg:#444444)\
$directory\
[](fg:#73cef4 bg:#c9d05c)\
$git_branch\
$git_commit\
[](fg:#c9d05c bg:#ffc24b)\
$c\
$golang\
$python\
$rust\
[](fg:#ffc24b bg:#f43753)\
$git_status\
[](fg:#f43753 bg:#bbbbbb)\
$jobs\
$sudo\
$status\
[ ](fg:#bbbbbb)\
"""
# Disable the blank line at the start of the prompt
add_newline = false
[directory]
style = "bg:#73cef4 fg:#202020"
format = "[ $path ]($style)"
truncation_length = 1
truncation_symbol = "…/"
[c]
symbol = " "
style = "bg:#ffc24b fg:#202020"
format = '[ $symbol ($version) ]($style)'
[gcloud]
symbol = ""
style = "bg:#444444 fg:#eeeeee"
format = "[ $symbol $account(@$domain) ]($style)"
[git_branch]
symbol = ""
style = "bg:#c9d05c fg:#202020"
format = '[ $symbol $branch ]($style)'
[git_commit]
style = "bg:#c9d05c fg:#202020"
format = '[@ $hash ]($style)'
[git_status]
style = "bg:#f43753 fg:#202020"
format = '([ $all_status$ahead_behind ]($style))'
[golang]
symbol = " "
style = "bg:#ffc24b fg:#202020"
format = '[ $symbol ($version) ]($style)'
[jobs]
symbol = '⚙'
style = "bg:#bbbbbb fg:#202020"
format = '[ $symbol $number ]($style)'
[python]
style = "bg:#ffc24b fg:#202020"
format = "[ ${symbol}${pyenv_prefix}(${version} ) ]($style)"
[rust]
symbol = ""
style = "bg:#ffc24b fg:#202020"
format = '[ $symbol ($version) ]($style)'
[status]
format = '[ $symbol$status ]($style)'
style = "bg:#bbbbbb fg:#202020"
disabled = false
[sudo]
style = "bg:#bbbbbb fg:#202020"
disabled = false
format = "[ $symbol ]($style)"
symbol = "♛"