-
Notifications
You must be signed in to change notification settings - Fork 78
/
Copy pathstarship.toml
145 lines (121 loc) · 3.1 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
137
138
139
140
141
142
143
144
145
format = """\
($directory)\
$os\
$git_branch\
$fill\
$nodejs\
$rust\
$golang\
$php\
$bun\
$java\
$c\
$conda\
$zig\
$cmd_duration\
$time\
\n$character\
"""
# Disable the blank line at the beginning of the prompt
add_newline = true
# Command timeout
command_timeout = 3600000
# color and style settings
palette = "oldWorld"
[fill]
symbol = ' '
# [palettes.sakura]
# arrow = "#c58ea7" # ia: pink
# os = "#878fb9" # va: blue
# directory = "#9e97d0" # ca: purple
# git = "#c58ea7" # ia: pink
# duration = "#9e97d0" # ca: purple
# text_color = "#c5a3a9" # na: text
# text_light = "#1c1a1c" # bl: background
[palettes.oldWorld]
arrow = "#EA83A5" # ia: intense pink
os = "#85B5BA" # va: light blue-green
directory = "#92A2D5" # ca: blue lavender
git = "#EA83A5" # ia: intense pink
duration = "#92A2D5" # ca: blue lavender
text_color = "#C9C7CD" # na: light gray
text_light = "#000000" # bl: dark gray
# Pink mustache icon for the prompt
[character]
success_symbol = "[](fg:#85B5BA)" # Mustache in dark pink tone
error_symbol = "[](fg:red)" # Mustache in red if there is an error
# User settings
[username]
style_user = 'bold os'
style_root = 'bold os_admin'
format = '[ $user](fg:$style) ' # Mustache before the username
disabled = false
show_always = true
# Directory settings
[directory]
format = "[$path](bold $style)[$read_only]($read_only_style) "
truncation_length = 2
style = "fg:directory"
read_only_style = "fg:directory"
before_repo_root_style = "fg:directory"
truncation_symbol = "…/"
truncate_to_repo = true
read_only = " "
[directory.substitutions]
"Documents" = " "
"Downloads" = " "
"Music" = " "
"Pictures" = " "
[cmd_duration]
format = " took [ $duration]($style) "
style = "bold fg:duration"
min_time = 500
[git_branch]
format = "-> [$symbol$branch]($style) "
style = "bold fg:git"
symbol = " " # Branch with oriental touch
[git_status]
format = '[$all_status$ahead_behind ]($style)'
style = "fg:text_color bg:git"
[docker_context]
disabled = true
symbol = " "
[python]
disabled = false
format = '[${symbol}${pyenv_prefix}(${version})( \($virtualenv\))](fg:#FF9E3B)($style)'
symbol = " "
version_format = "${raw}"
[java]
format = '[[ $symbol ($version) ](fg:#FF5D62)]($style)'
version_format = "${raw}"
symbol = " "
disabled = false
[c]
format = '[[ $symbol ($version) ](fg:#7FB4CA)]($style)'
symbol = " "
version_format = "${raw}"
disabled = false
[zig]
format = '[[ $symbol ($version) ](fg:#FFA066)]($style)'
version_format = "${raw}"
disabled = false
[bun]
version_format = "${raw}"
format = '[[ $symbol ($version) ](fg:#DCD7BA)]($style)'
disabled = false
[nodejs]
symbol = ""
format = '[[ $symbol ($version) ](fg:#87a987)]($style)'
[rust]
symbol = ""
format = '[[ $symbol ($version) ](fg:#FF5D62)]($style)'
[golang]
symbol = ""
format = '[[ $symbol ($version) ](fg:#7FB4CA)]($style)'
[php]
symbol = ""
format = '[[ $symbol ($version) ](fg:#FF9E3B)]($style)'
[time]
disabled = false
time_format = "%R" # Hour:Minute Format
format = '[[ $time ](fg:#8BA4B0)]($style)'