summaryrefslogtreecommitdiff
path: root/.config/starship.toml
blob: 8372d2b10d4a05c66f0f8e9b8cca8cdb10a3d2d6 (plain)
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
palette = "noctalia"
add_newline = true
command_timeout = 200
format = "$username$hostname$character [$directory$git_branch$git_status]($style)"

[username]
show_always = true
format = "[$user]($style)"
style_user = "mauve"
[hostname]
disabled = false
ssh_only = false
format = "[@$hostname]($style)"
style = "mauve"

[character]
format = "$symbol" # Removes the default trailing space after #
error_symbol = "[:~✗](bold red)"
success_symbol = "[:~#](bold mauve)"

[directory]
style = "pink"
truncation_length = 2
truncation_symbol = "///"
repo_root_style = "pink"
repo_root_format = "[$repo_root]($repo_root_style)[$path]($style)[$read_only]($read_only_style) "

[git_branch]
symbol = "> "
format = "[$symbol$branch]($style) "
style = "italic pink"

[git_status]
format     = '[$all_status]($style)'
style      = "purple"
ahead      = "⇡${count} "
diverged   = "⇕⇡${ahead_count}⇣${behind_count} "
behind     = "⇣${count} "
conflicted = " "
up_to_date = " "
untracked  = "? "
modified   = " "
stashed    = ""
staged     = ""
renamed    = ""
deleted    = ""

# >>> NOCTALIA STARSHIP PALETTE >>>
# Generated dynamically from wallust. Colors follow the active dark/light mode:
# wallust sorts color0=darkest / color15=brightest with --palette dark (swapped
# in light mode), so base/text/etc. auto-adapt — no more dark-on-dark prompt.
# Source of truth: .config/wallust/templates/starship.toml

[palettes.noctalia]
# Standard colors
blue      = "#798D1F"
# red/green pinned to fixed visible hues: some wallpapers yield a near-black
# color9/color10, which would be invisible on the dark terminal.
red       = "#E5484D"
green     = "#7FB069"
yellow    = "#856B58"
cyan      = "#D9B890"
magenta   = "#829FB6"
white     = "#E4D3BF"
black     = "#37393D"

# Extended palette (Catppuccin-compatible names)
rosewater = "#856B58"
flamingo  = "#374F40"
pink      = "#829FB6"
mauve     = "#829FB6"
maroon    = "#374F40"
peach     = "#856B58"
teal      = "#D9B890"
sky       = "#D9B890"
sapphire  = "#798D1F"
lavender  = "#829FB6"

# Text shades
text      = "#E4D3BF"
subtext1  = "#E4D3BF"
subtext0  = "#9F9486"

# Surface shades
overlay2  = "#9F9486"
overlay1  = "#9F9486"
overlay0  = "#E4D3BF"
surface2  = "#37393D"
surface1  = "#37393D"
surface0  = "#37393D"
base      = "#0F1115"
mantle    = "#0F1115"
crust     = "#0F1115"
# <<< NOCTALIA STARSHIP PALETTE <<<