-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstarship.toml
73 lines (63 loc) · 1.36 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
# Show only the user, path and git
# information in the normal prompt
# and all the other information on the right
# prompt
format = """
$username\
$hostname\
$directory\
$git_branch\
$git_commit\
$git_state\
$git_metrics\
$git_status\
$fill\
$all\
$line_break\
$character"""
# Fill the prompt with spaces
[fill]
symbol = " "
# Use the $ character for the prompt
[character]
success_symbol = "[\\$](bold white)"
error_symbol = "[\\$](bold red)"
# Always show the username in the prompt
[username]
style_user = "bold green"
format = "[$user]($style)"
show_always = true
disabled = false
# Always show the hostname in the prompt
[hostname]
format = "[@](bold blue)[$hostname](bold cyan) "
trim_at = "."
ssh_only = false
disabled = false
# Change the style of the directory
# module to be different from the one
# used for the hostname
[directory]
style = "yellow"
disabled = false
# Do not show commands duration
[cmd_duration]
disabled = true
# Remove the symbol from git branch format
[git_branch]
format = "\\[[$branch]($style) "
style = "bold blue"
disabled = false
# Remove the square brackers from the
# git status format
[git_status]
format = "[$all_status$ahead_behind]($style)\\]"
# Show Kubernetes context in the prompt
[kubernetes]
style = "blue"
disabled = false
# Show the current time
[time]
format = '[ $time ]($style)'
style = "bold bright-black"
disabled = false