-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.starship.toml
69 lines (58 loc) · 1.26 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
# https://starship.rs/
# General settings
add_newline = false
format = """
$username\
$hostname\
$python\
$conda\
$directory\
$git_branch\
$git_status\
$cmd_duration\
$line_break\
$jobs\
$battery\
$time\
$character"""
[username]
disabled = true
[hostname]
disabled = true
[directory]
style = "blue"
truncate_to_repo = true
format = "[$path]($style) "
[git_branch]
format = "[$branch]($style) "
style = "purple"
disabled = false
[git_status]
format = "$ahead_behind$staged$modified$renamed$deleted$stashed$untracked"
conflicted = "[!${count} ](bright-red)"
ahead = "[ ${count} ](bright-blue)"
behind = "[ ${count} ](bright-blue)"
# diverged = "[ ${ahead_count}: ${behind_count} ](bright-blue)"
untracked = "[?${count} ](red)"
stashed = "[*${count} ](black)"
modified = "[~${count} ](yellow)"
staged = "[+${count} ](green)"
renamed = "[~${count} ](yellow)"
deleted = "[~${count} ](yellow)"
[cmd_duration]
min_time = 0
format = "[$duration]($style) "
style = "bright-purple"
show_milliseconds = true
[jobs]
symbol = "✦ "
style = "bright-blue"
[battery]
disabled = true
[time]
format = ""
disabled = true
[character]
success_symbol = "[](white)"
error_symbol = "[](bright-red)"
vicmd_symbol = "[](yellow)"