Update Starship configuration
This commit is contained in:
parent
da3833dbaa
commit
da50e3369b
|
@ -27,8 +27,8 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
nix_shell = {
|
nix_shell = {
|
||||||
format = "[$symbol]($style)";
|
format = "[$symbol \\($state\\) ]($style)";
|
||||||
symbol = "❄️ ";
|
symbol = "❄️";
|
||||||
};
|
};
|
||||||
|
|
||||||
jobs = {
|
jobs = {
|
||||||
|
@ -39,7 +39,10 @@
|
||||||
|
|
||||||
status = {
|
status = {
|
||||||
disabled = false;
|
disabled = false;
|
||||||
|
pipestatus = true;
|
||||||
format = "[\\($int\\)]($style) ";
|
format = "[\\($int\\)]($style) ";
|
||||||
|
pipestatus_segment_format = "$int";
|
||||||
|
pipestatus_format = "[\\($pipestatus\\)]($style) ";
|
||||||
};
|
};
|
||||||
|
|
||||||
time = {
|
time = {
|
||||||
|
@ -48,21 +51,21 @@
|
||||||
style = "dimmed cyan";
|
style = "dimmed cyan";
|
||||||
};
|
};
|
||||||
|
|
||||||
git_branch.style = "bold green";
|
git_branch.style = "bold bright-green";
|
||||||
|
|
||||||
git_status = {
|
git_status = {
|
||||||
format = "$stashed$ahead_behind$conflicted$deleted$renamed$staged$modified$untracked";
|
format = "$stashed$ahead_behind$conflicted$deleted$renamed$staged$modified$untracked";
|
||||||
|
|
||||||
conflicted = "[~$count ](red)";
|
conflicted = "[~$count ](bright-red)";
|
||||||
ahead = "[⇡$count ](cyan)";
|
ahead = "[⇡$count ](bright-cyan)";
|
||||||
behind = "[⇣$count ](cyan)";
|
behind = "[⇣$count ](bright-cyan)";
|
||||||
diverged = "[⇕ ](cyan)";
|
diverged = "[⇕ ](bright-cyan)";
|
||||||
untracked = "[?$count ](cyan)";
|
untracked = "[?$count ](bright-cyan)";
|
||||||
stashed = "[\\$$count ](cyan)";
|
stashed = "[\\$$count ](bright-cyan)";
|
||||||
modified = "[!$count ](yellow)";
|
modified = "[!$count ](yellow)";
|
||||||
staged = "[+$count ](yellow)";
|
staged = "[+$count ](yellow)";
|
||||||
renamed = "[»$count ](yellow)";
|
renamed = "[»$count ](yellow)";
|
||||||
deleted = "[✘$count ](red)";
|
deleted = "[✘$count ](bright-red)";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue