-
Notifications
You must be signed in to change notification settings - Fork 0
/
starship.toml
136 lines (113 loc) · 2.47 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
format = """
[╭──](fg:#9097AE)\
$os\
$username\
$sudo\
$hostname\
$directory\
\n[╰── λ](fg:#9097AE) \
$git_branch\
$git_state\
$git_status\
$git_commit\
$nodejs\
$rust\
$python\
$golang\
$php\
$java\
$package\
"""
right_format = """
$status\
$cmd_duration\
$time"""
add_newline = false
[username]
style_user = 'fg:#8AB4FB'
style_root = 'red bold'
format = '[$user]($style)'
disabled = false
show_always = true
[hostname]
ssh_only = false
format = '[@$hostname$ssh_symbol](fg:#8AB4FB) '
trim_at = '.companyname.com'
disabled = false
ssh_symbol = ' '
[directory]
style = "fg:#C6A8BE"
format = "in [ $path ]($style)"
truncation_length = 5
truncation_symbol = "…/"
[directory.substitutions]
"Documents" = " "
"Downloads" = " "
"Music" = "� "
"Pictures" = " "
[git_branch]
symbol = ""
format = '[[$symbol $branch ](fg:#769ff0)]($style)'
[git_commit]
tag_disabled = false
only_detached = true
tag_symbol = '\uf412 '
format = '[\($hash$tag\)]($style) '
[git_state]
format = '[\($state( $progress_current of $progress_total)\)]($style) '
merge = '[\ue727 MERGING](bold red)'
rebase = '[\ue728 REBASING](bold red)'
revert = '[\uf0e2 REVERTING](bold red)'
cherry_pick = '[\ue29b PICKING](bold red)'
[git_status]
windows_starship = '/mnt/c/Users/username/scoop/apps/starship/current/starship.exe'
[nodejs]
symbol = ""
format = '[[$symbol ($version) ](fg:#769ff0)]($style)'
[rust]
symbol = ""
format = '[[$symbol ($version) ](fg:#769ff0)]($style)'
[golang]
symbol = ""
format = '[[$symbol ($version) ](fg:#769ff0)]($style)'
[php]
symbol = ""
format = '[[$symbol ($version) ](fg:#769ff0)]($style)'
[java]
symbol = ""
format = '[[$symbol ($version) ](fg:#769ff0)]($style)'
[python]
symbol = ""
format = '[[$symbol ($version) ](fg:#769ff0)]($style)'
[time]
disabled = false
time_format = "%A %T" # Monday Hour:Minute Format
format = '[[ $time ](fg:#a0a9cb)]($style)'
[sudo]
style = 'bold yellow'
symbol = ''
disabled = false
format = ' [as $symbol ]($style)'
[status]
style = 'bold blue'
symbol = '✗'
success_symbol = '✓'
not_executable_symbol = '!'
not_found_symbol = '?'
sigint_symbol = '✗'
format = '[$symbol$common_meaning$signal_name$maybe_int]($style) '
map_symbol = true
disabled = false
[os]
format = "[$symbol ]($style)"
style = "bold blue"
disabled = false
[os.symbols]
Windows = " "
Macos = " "
[cmd_duration]
min_time = 10
format = 'underwent [$duration](bold yellow)'
[package]
format = 'via [🎁 $version](208 bold) '
disabled = false