zsh/starship: fix bg color for ssh prompt

This commit is contained in:
Colin 2023-07-18 08:28:53 +00:00
parent f12737b1f9
commit 5c1eaf273e

View File

@ -17,6 +17,7 @@ in {
"[](#9A348E)"
"$os"
"$username"
"$hostname"
"[](bg:#DA627D fg:#9A348E)"
"$directory"
"[](fg:#DA627D bg:#FCA17D)"
@ -37,10 +38,13 @@ in {
# os.symbols.NixOS = "❄️"; # removes the space after logo
# TODO: tune foreground color of username
username.style_user = "bold bg:#9A348E";
username.style_user = "bg:#9A348E";
username.style_root = "bold bg:#9A348E";
username.format = "[$user]($style)";
hostname.style = "bold bg:#9A348E";
hostname.format = "[$ssh_symbol$hostname]($style)";
directory.style = "bg:#DA627D fg:#ffffff";
directory.format = "[ $path ]($style)";
directory.truncation_length = 3;