-
Notifications
You must be signed in to change notification settings - Fork 0
/
starship.toml
48 lines (38 loc) · 961 Bytes
/
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
# Get editor completions based on the config schema
"$schema" = 'https://starship.rs/config-schema.json'
# Inserts a blank line between shell prompts
add_newline = false
format = """$character"""
right_format = """$cmd_duration \
$python \
$username$hostname:$directory\
$git_branch$git_status\
$time"""
[character]
success_symbol = "[❯](bold green)"
error_symbol = "[❯](bold red)"
[cmd_duration]
min_time = 100
format = '[\($duration\)](bold yellow) '
show_milliseconds = true
[directory]
truncate_to_repo = false
truncation_length = 0
[username]
style_user = "blue"
style_root = "black bold"
format = '([$user[@](bold)]($style))'
disabled = false
show_always = true
[hostname]
ssh_only = false
format = "[$hostname](bold red)"
trim_at = ".companyname.com"
disabled = false
[git_branch]
format = "[$symbol$branch(:$remote_branch)]($style)"
[time]
disabled = false
format = '([\[$time\]]($style))'
[python]
format = '[(\($virtualenv\) )]($style)'