1
0
Fork 0

Add nix-shell to starship

This commit is contained in:
Ethan Reece 2025-07-14 01:58:59 -05:00
parent dc57b47ab9
commit 1197669e1a
Signed by: me
GPG key ID: DD8CE04D5D8FF832

View file

@ -252,7 +252,9 @@ in
+ "$kotlin" + "$kotlin"
+ "$haskell" + "$haskell"
+ "$python" + "$python"
+ "[](fg:green bg:sapphire)" + "[](fg:green bg:black)"
+ "$nix_shell"
+ "[](fg:black bg:sapphire)"
+ "$conda" + "$conda"
+ "[](fg:sapphire bg:lavender)" + "[](fg:sapphire bg:lavender)"
+ "$time" + "$time"
@ -283,6 +285,7 @@ in
Debian = "󰣚"; Debian = "󰣚";
Redhat = "󱄛"; Redhat = "󱄛";
RedHatEnterprise = "󱄛"; RedHatEnterprise = "󱄛";
NixOS = "";
}; };
}; };
username = { username = {
@ -369,6 +372,11 @@ in
format = ''[$symbol$environment ]($style)''; format = ''[$symbol$environment ]($style)'';
ignore_base = false; ignore_base = false;
}; };
nix_shell = {
symbol = "󱄅";
style = "bg:black";
format = ''[[ $symbol( $name) ](fg:blue bg:black)]($style)'';
};
time = { time = {
disabled = false; disabled = false;
time_format = "%R"; time_format = "%R";