dots


dots / config / .config
xxwhirlpool  ·  2026-05-02

starship.toml

 1"$schema" = 'https://starship.rs/config-schema.json'
 2
 3add_newline = false
 4
 5palette = "catppuccin_frappe"
 6
 7format = '$all$env_var$character$username$hostname$character$directory '
 8
 9# `rv` currently sets a permanent $RUBY_VERSION variable
10# so my shell always shows the ruby ver no matter the pwd
11# this just gets rid of the whole thing. whatever man
12[ruby]
13format = ""
14
15[character]
16success_symbol = '[❥](bold pink)'
17
18[hostname]
19ssh_only = false
20format = '[$ssh_symbol$hostname](bold sapphire)'
21
22[username]
23show_always = true
24format = '[$user](bold lavender)[@](bold green)'
25
26[directory]
27style = "bold green"
28
29[[battery.display]]
30threshold = 10
31style = "bold red"
32
33[[battery.display]]
34threshold = 30
35style = "bold yellow"
36
37[env_var.ZMX_SESSION]
38symbol = " "
39format = "[$symbol]($style)"
40description = "zmx session name"
41style = "bold green"
42
43[palettes.catppuccin_frappe]
44rosewater = "#f2d5cf"
45flamingo = "#eebebe"
46pink = "#f4b8e4"
47mauve = "#ca9ee6"
48red = "#e78284"
49maroon = "#ea999c"
50peach = "#ef9f76"
51yellow = "#e5c890"
52green = "#a6d189"
53teal = "#81c8be"
54sky = "#99d1db"
55sapphire = "#85c1dc"
56blue = "#8caaee"
57lavender = "#babbf1"
58text = "#c6d0f5"
59subtext1 = "#b5bfe2"
60subtext0 = "#a5adce"
61overlay2 = "#949cbb"
62overlay1 = "#838ba7"
63overlay0 = "#737994"
64surface2 = "#626880"
65surface1 = "#51576d"
66surface0 = "#414559"
67base = "#303446"
68mantle = "#292c3c"
69crust = "#232634"