1
0
Files
dotfiles/dot_config/private_fish/functions/fish_prompt.fish
2024-05-07 11:50:00 +03:00

26 lines
409 B
Fish

function fish_prompt --description 'Write out the prompt'
set -l last_status $status
my_venv_prompt
prompt_login
echo -n ':'
# PWD
set_color $fish_color_cwd
echo -n (prompt_pwd)
set_color normal
__terlar_git_prompt
fish_hg_prompt
echo
if not test $last_status -eq 0
set_color $fish_color_error
end
echo -n '➤ '
set_color normal
end