Fix the fish prompt

set_color must be normal here to avoid the next character
not being the default color.
This commit is contained in:
Donovan Glover 2018-04-02 20:56:13 -04:00
parent 0ebdcc5279
commit 500983f369
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

View File

@ -9,9 +9,9 @@ function fish_prompt
end
set_color magenta; echo -n "$pwd"
set_color white; echo -n " "
set_color normal; echo -n " "
set_color red; echo -n "➤"
set_color green; echo -n "➤"
set_color blue; echo -n "➤"
set_color white; echo -n " "
set_color normal; echo -n " "
end