-
Notifications
You must be signed in to change notification settings - Fork 1
/
starship.toml
61 lines (47 loc) · 1.17 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
format = """
[┌ ](bold cyan)$all$fill$cmd_duratio$time
[│ ](bold cyan)
[└─$character](bold cyan) """
# Moves these modules to right on same line as cursor
right_format = """"""
# Inserts a blank line between shell prompts
add_newline = true
# Helps in filling the gap between modules, used in above format
[fill]
symbol = ' '
style = 'bold cyan'
# Making a single line prompt
[line_break]
disabled = true
[character]
success_symbol = '[❯](bold cyan) '
error_symbol = '[✗](bold red) '
[battery]
full_symbol = "🔋 "
charging_symbol = "🔌 "
[[battery.display]]
threshold = 10
style = "bold red"
discharging_symbol = " "
[[battery.display]]
threshold = 30
style = "yellow"
discharging_symbol = " "
[directory]
home_symbol = "🏠 "
truncation_length = 5
format = "[$path]($style)[$lock_symbol]($lock_style) "
[time]
disabled = false
format = '🕙 [$time]($style) '
time_format = '%v - %I:%M'
[cmd_duration]
min_time = 10_000 # Show command duration over 10,000 milliseconds (=10 sec)
format = " took [$duration]($style)"
# Disable the package module, hiding it from the prompt completely
[package]
disabled = true
# [python]
# disabled = false
[aws]
disabled = true