Skip to content

Commit 416f910

Browse files
committed
fix(programs/starship): prefix prompt char with shell for easier vis
1 parent c4e105f commit 416f910

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

users/uncenter/programs/starship.nix

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,8 @@ in
2929
"$rust"
3030
"$sudo"
3131
"$fill"
32-
"$shell"
3332
"$line_break"
34-
"$status"
35-
"$os"
33+
"$shell"
3634
"$character"
3735
];
3836
command_timeout = 1000;
@@ -65,9 +63,9 @@ in
6563
style = "sky";
6664
format = "[$indicator]($style)";
6765
fish_indicator = ""; # default shell
68-
nu_indicator = "\\[[nu](green)\\]";
69-
bash_indicator = "\\[[bash](red)\\]";
70-
zsh_indicator = "\\[[zsh](yellow)\\]";
66+
nu_indicator = "\\[[nu](green)\\] ";
67+
bash_indicator = "\\[[bash](red)\\] ";
68+
zsh_indicator = "\\[[zsh](yellow)\\] ";
7169
};
7270

7371
git_branch = {

0 commit comments

Comments
 (0)