-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstarship.toml
64 lines (52 loc) · 1.13 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
command_timeout = 3000
format = """
$username\
$hostname\
$directory\
$git_branch\
$git_state\
$git_status\
$git_metrics\
$fill\
$nodejs\
${custom.readme} ${custom.home} $cmd_duration $jobs $time\
$line_break\
$character"""
# A continuation prompt that displays two filled in arrows
continuation_prompt = '▶▶ '
[nodejs]
format = "[$symbol($version )]($style)"
detect_files = ["package.json", ".node-version"]
detect_folders = ["node_modules"]
[fill]
symbol = " "
[directory]
style = "bold blue"
home_symbol = "~"
read_only = " "
truncation_length = 4
truncate_to_repo = false
[character]
success_symbol = "[λ](purple)"
error_symbol = "[λ](red)"
vimcmd_symbol = "[λ](green)"
[git_branch]
symbol = " "
format = "[$symbol$branch]($style) "
style = "bold bright-green"
[jobs]
symbol = ""
style = "bold red"
number_threshold = 1
format = "[$symbol]($style)"
[git_status]
format = '([\[$all_status$ahead_behind\]]($style) )'
style = "cyan"
[git_state]
format = '\([$state( $progress_current/$progress_total)]($style)\) '
style = "bright-black"
[git_metrics]
disabled = false
[cmd_duration]
format = "[$duration]($style)"
style = "yellow"