-
Notifications
You must be signed in to change notification settings - Fork 6
/
starship.toml
44 lines (32 loc) · 862 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
# Use custom format
format = """
$username$hostname$directory$vagrant$terraform$elixir$ruby$go$nodejs$docker_context$git_branch$character
"""
# Wait 10 milliseconds for starship to check files under the current directory.
scan_timeout = 10
command_timeout = 2000
# Disable the blank line at the start of the prompt
add_newline = false
[character]
success_symbol = "[❯](bold green)"
[git_branch]
symbol = "🌱 "
truncation_length = 10
truncation_symbol = ""
[docker_context]
format = "via [🐋 $context](blue bold) "
[ruby]
format = "ruby [$version](red bold) "
detect_variables = []
[nodejs]
format = "node [$version](green bold) "
[hostname]
ssh_only = false
format = "@[$hostname](green bold) "
[username]
show_always = true
format = "[$user](yellow bold)"
[directory]
format = "[$path](cyan bold) "
truncate_to_repo = true
truncation_length=1