forked from Gentleman-Programming/Gentleman.Dots
-
Notifications
You must be signed in to change notification settings - Fork 0
/
starship.toml
136 lines (113 loc) · 2.91 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 = """\
($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
# Kanagawa Dragon color and style settings
palette = "kanagawa_dragon"
[fill]
symbol = ' '
[palettes.kanagawa_dragon]
arrow = "#DCD7BA" # Light bone color, soft and visible
os = "#C4B28A" # Warm yellow tone of dragonYellow
directory = "#8BA4B0" # Soft sky blue, dragonBlue2
git = "#C4746E" # Soft red, dragonRed
duration = "#957FB8" # Soft purple, oniViolet
text_color = "#C5C9C5" # Light color, dragonWhite
text_light = "#2A2A37" # Dark gray, sumiInk4
# Pink mustache icon for the prompt
[character]
success_symbol = "[](fg:#A3BE8C)" # 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)'