-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstarship.toml
114 lines (99 loc) · 2.51 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
add_newline = true
format = """
$python\
$nodejs\
$rust\
$lua\
$git_branch\
$git_commit\
$git_state\
$git_metrics\
$git_status\
$hg_branch\
$line_break\
$username\
$hostname\
$shlvl\
$directory\
$line_break\
$status\
$cmd_duration\
$character"""
# Timeout for commands executed by starship (in milliseconds)
command_timeout=2000
[line_break]
disabled = false
[character]
format = "$symbol"
success_symbol = "[ ](yellow)"
error_symbol = "[ ](bright-red)"
vicmd_symbol = "[ ](blue)"
vimcmd_replace_one_symbol = "[ ](blue)"
vimcmd_replace_symbol = "[ ](red)"
vimcmd_visual_symbol = "[ ](bright-black)"
[status]
disabled = false
pipestatus = true
format = '([\[](black)[$symbol$int]($style)[\]](black) )'
symbol = '✘'
not_executable_symbol = ' '
not_found_symbol = ' '
sigint_symbol = ' '
signal_symbol = ' '
map_symbol = true
style = 'bold bright-red'
pipestatus_format = '[\[$pipestatus\]](black)'
pipestatus_separator = ' ⁞'
pipestatus_segment_format = '[$symbol $int]($style)'
[cmd_duration]
format = '([$duration]($style) )'
[directory]
read_only = ""
truncation_length = 8
fish_style_pwd_dir_length = 8
truncate_to_repo = false
style = 'black'
format = "([$read_only]($read_only_style) )[ ](black)[$path]($style) "
repo_root_style = 'bold cyan'
repo_root_format = "([$read_only]($read_only_style) )[ ](black)[$before_root_path]($before_repo_root_style)[$repo_root]($repo_root_style)[$path]($style) "
[directory.substitutions]
"~/Code/" = ""
"~/" = ""
[git_branch]
symbol = " "
format = '[$symbol$branch]($style)'
style = 'bright-black'
[hg_branch]
symbol = " "
format = '[$symbol($version)]($style)'
style = 'bright-black'
[git_status]
style = 'black'
format = '( [([$modified$renamed$deleted](purple))$staged$untracked$conflicted( \[$ahead_behind\])( \[$stashed\])]($style)) '
modified = '[](purple)'
untracked = '[](yellow)'
staged = '[](blue)'
renamed = '[](green)'
deleted = '[](red)'
conflicted = '[](red) \[[${count} conflicted](red)\]'
ahead = 'ahead [${count}](green)'
diverged = 'ahead [${ahead_count}](green), behind [${behind_count}](red)'
behind = 'behind [${count}](red)'
stashed = "[${count}](green) stashed"
[nodejs]
format = '([$symbol$version]($style) )'
symbol = " "
style = "green"
[python]
format = '([$symbol$version]($style) )'
symbol = " "
style = "yellow"
[rust]
format = '([$symbol$version]($style) )'
symbol = " "
style = "red"
[lua]
format = '([$symbol$version]($style) )'
symbol = " "
style = "blue"
lua_binary = "luajit"