David Adam b776327b9d Revert "prompts: more concise way of getting the hostname."
This reverts commit 233c4436943fb56edf6db44b932221107b37fad1.

See discussion in https://github.com/fish-shell/fish-shell/pull/2489
2015-10-16 07:01:12 +08:00

37 lines
578 B
Fish

# name: Terlar
# author: terlar - https://github.com/terlar
function fish_prompt --description 'Write out the prompt'
set -l last_status $status
# User
set_color $fish_color_user
echo -n (whoami)
set_color normal
echo -n '@'
# Host
set_color $fish_color_host
echo -n (hostname -s)
set_color normal
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