-
Notifications
You must be signed in to change notification settings - Fork 0
/
starship.toml
51 lines (42 loc) · 1.1 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
# 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
# Use custom format
format = """
[╭─](white)$username in $directory$package$git_branch$git_commit$git_state$git_status$java$nodejs$cmd_duration
[╰─](white)$character """
[aws]
disabled = true
# Username settings
[username]
show_always = true
style_root = "bold red"
style_user = "bold yellow"
format = "[Rond0w]($style)"
disabled = false
# Directory indicator
[directory]
read_only = "🔒"
style = "bold cyan"
read_only_style = "red"
format = "[$read_only]($read_only_style)[$path]($style) "
disabled = false
# Package Version Config
[package]
format = "via [🎁 $version](208 bold) "
# Java settings
[java]
symbol = "☕ "
style = "red dimmed"
format = "via [${symbol}${version}]($style) "
# Node JS settings
[nodejs]
format = 'via [$symbol$version](bold green) '
# Charakter config
[character]
format = "$symbol"
success_symbol = "[❯](bold green)"
error_symbol = "[✗](bold red) "
vicmd_symbol = "[❮](bold green)"
disabled = false