Skip to content

Commit

Permalink
fix(starship): unify spacings before segments
Browse files Browse the repository at this point in the history
  • Loading branch information
Pyxels committed Jan 13, 2025
1 parent 98f6076 commit d595bd9
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions home/starship.nix
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,16 @@
style = "fg:blue";
read_only_style = "fg:red";
read_only = "🔒";
format = "[$read_only]($read_only_style)[$path]($style) ";
format = "[$read_only]($read_only_style)[$path]($style)";
truncation_length = 4;
truncation_symbol = ".../";
};
git_branch = {
style = "fg:white";
format = "[$branch]($style)";
format = "[ $branch]($style)";
};
git_status = {
format = "[( $ahead_behind$stashed )]($style)";
format = "[( $ahead_behind$stashed)]($style)";
ahead = "[󰜷 \${count} ](blue)";
behind = "[󰜮 \${count} ](blue)";
diverged = "[󰹺 \${ahead_count}/\${behind_count} ](blue)";
Expand All @@ -52,13 +52,13 @@
style = "bold";
};
git_state = {
format = "\([$state( $progress_current/$progress_total) ]($style)\)";
format = "\([ $state( $progress_current/$progress_total)]($style)\)";
style = "fg:gray";
};

nix_shell = {
style = "fg:#ebdbb2";
format = "[$symbol]($style)";
format = "[ $symbol]($style)";
};

cmd_duration = {
Expand Down

0 comments on commit d595bd9

Please sign in to comment.