blob: 415f452a33c92aab4f75e414940813cd52d800e5 (
plain)
1
2
3
4
5
6
7
8
9
10
|
function fish_prompt
set -l last_status $status
# Prompt status only if it's not 0
set -l stat
if test $last_status -ne 0
set stat (set_color red)" [$last_status] "(set_color normal)
end
string join '' -- (set_color green) (prompt_pwd -D 50) (set_color normal) $stat '> '
end
|