diff options
Diffstat (limited to 'jstmax_fish_prompts.fish')
| -rw-r--r-- | jstmax_fish_prompts.fish | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/jstmax_fish_prompts.fish b/jstmax_fish_prompts.fish index c44d452..7cadb12 100644 --- a/jstmax_fish_prompts.fish +++ b/jstmax_fish_prompts.fish @@ -5,12 +5,12 @@ function fish_prompt set -l home $HOME if test "$cwd" = "$home" - echo -e "$user"(set_color green)"~"(set_color white)" ::> " + echo -e "$user"(set_color green)"~"(set_color white)" => " else if string match -q "$home/*" $cwd - set -l relative (string replace "$home/" "~/" $cwd) - echo -e "$user"(set_color green)$relative(set_color white)" ::> " + set -l relative (string replace "$home/" "~/" $cwd) + echo -e "$user"(set_color green)$relative(set_color white)" => " else - echo -e "$user"(set_color green)$cwd(set_color white)" ::> " + echo -e "$user"(set_color green)$cwd(set_color white)" => " end end |