-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstarship.toml
executable file
·101 lines (86 loc) · 2.34 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
# Don't print a new line at the start of the prompt
add_newline = false
# Pipes ╰─ ╭─
# Powerline symbols
# Wedges 🭧🭒 🭣🭧🭓
# Random noise 🬖🬥🬔🬗
right_format = """\
$cmd_duration
"""
format = """
$username$hostname$directory
$character
"""
# Replace the "❯" symbol in the prompt with "➜"
[character] # The name of the module we are configuring is "character"
success_symbol = "[ 🭣🭧🭓](fg:blue)[ ](fg:blue)"
disabled = true
error_symbol = "[ ](fg:red)[ ](bg:red fg:cyan)[ ](fg:red)"
# Disable the package module, hiding it from the prompt completely
[package]
disabled = true
[git_branch]
symbol = "🌱 "
truncation_length = 4
truncation_symbol = ""
disabled = true
[git_commit]
commit_hash_length = 4
tag_symbol = "🔖 "
disabled = true
[git_state]
format = '[\($state( $progress_current of $progress_total)\)]($style) '
cherry_pick = "[🍒 PICKING](bold red)"
disabled = true
[git_status]
conflicted = " 🏳 "
ahead = " 🏎💨 "
behind = " 😰 "
diverged = " 😵 "
untracked = " 🤷 "
stashed = " 📦 "
modified = " 📝 "
staged = '[++\($count\)](blue)'
renamed = " ✍️ "
deleted = " 🗑 "
disabled = true
[hostname]
ssh_only = false
format = "[ ](bold bg:cyan fg:blue)[$hostname ](bg:cyan bold fg:black)[ ](bold fg:cyan bg:blue)"
trim_at = ".companyname.com"
disabled = true
[line_break]
disabled = true
[memory_usage]
disabled = true
threshold = -1
symbol = " "
style = "bold dimmed blue"
[time]
disabled = false
format = '🕙[\[ $time \]]($style) '
time_format = "%T"
[username]
style_user = "bold bg:blue fg:cyan"
style_root = "red bold"
format = "[🭃](bold fg:blue)[$user ]($style)"
disabled = true
show_always = false
[directory]
home_symbol = " "
read_only = " "
style = "bg:blue fg:cyan"
truncation_length = 2
truncation_symbol = "./"
format = '[$path]($style)[ ](fg:blue)'
disabled = false
[directory.substitutions]
"Documents" = " "
"/" = " "
"Downloads" = " "
"Music" = " "
"Pictures" = " "
[cmd_duration]
min_time = 0
format = '[🬈🬖🬥🬅 ](bold bg:yellow fg:black)[time:$duration](bold bg:yellow fg:black)[ 🬖🬥🬔🬗](bold bg:yellow fg:black)'
disabled = true