fish-shell/share/tools/web_config/sample_prompts/terlar.fish

37 lines
630 B
Fish
Raw Normal View History

# name: Terlar
# author: terlar - https://github.com/terlar
function fish_prompt --description 'Write out the prompt'
2016-11-02 10:19:45 +08:00
set -l last_status $status
2016-11-02 10:19:45 +08:00
# User
set_color $fish_color_user
echo -n (whoami)
set_color normal
2016-11-02 10:19:45 +08:00
echo -n '@'
2016-11-02 10:19:45 +08:00
# Host
set_color $fish_color_host
echo -n (prompt_hostname)
set_color normal
2016-11-02 10:19:45 +08:00
echo -n ':'
2016-11-02 10:19:45 +08:00
# PWD
set_color $fish_color_cwd
echo -n (prompt_pwd)
set_color normal
2016-11-02 10:19:45 +08:00
__terlar_git_prompt
__fish_hg_prompt
echo
2016-11-02 10:19:45 +08:00
if not test $last_status -eq 0
set_color $fish_color_error
end
2016-11-02 10:19:45 +08:00
echo -n '➤ '
set_color normal
end