nichts/packages/fish/starship.nix
2025-06-07 17:54:40 +02:00

38 lines
810 B
Nix

{
add_newline = false;
command_timeout = 2000;
format = "$hostname$username$directory$shell$nix_shell$jobs$character";
scan_timeout = 1;
character = {
error_symbol = "[λ](bold red)";
success_symbol = "[λ](bold green)";
};
directory = {
format = "[](bold green) [$path]($style) ";
truncation_length = 2;
};
direnv = {
disabled = false;
};
git_status = {
disabled = true;
};
hostname = {
disabled = false;
format = "@[$hostname](bold blue) ";
ssh_only = true;
};
c.symbol = "[ ](black)";
lua.symbol = "[ ](blue) ";
nix_shell.symbol = "[󱄅 ](blue) ";
nodejs.symbol = "[󰎙 ](yellow)";
package.symbol = "📦 ";
python.symbol = "[ ](blue) ";
rust.symbol = "[ ](red) ";
username.format = "[$user]($style) in ";
}