mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-25 09:39:52 +08:00
40 lines
698 B
Fish
40 lines
698 B
Fish
|
# name: Terlar
|
||
|
# author: terlar - https://github.com/terlar
|
||
|
|
||
|
set -xg fish_color_user magenta
|
||
|
set -xg fish_color_host yellow
|
||
|
|
||
|
function fish_prompt --description 'Write out the prompt'
|
||
|
set -l last_status $status
|
||
|
|
||
|
# User
|
||
|
set_color $fish_color_user
|
||
|
printf (whoami)
|
||
|
set_color normal
|
||
|
|
||
|
echo -n '@'
|
||
|
|
||
|
# Host
|
||
|
set_color $fish_color_host
|
||
|
printf (hostname -s)
|
||
|
set_color normal
|
||
|
|
||
|
echo -n ':'
|
||
|
|
||
|
# PWD
|
||
|
set_color $fish_color_cwd
|
||
|
printf (prompt_pwd)
|
||
|
set_color normal
|
||
|
|
||
|
__terlar_git_prompt
|
||
|
# I prefer to have a new-line here but messes with the prompt when resizing
|
||
|
echo
|
||
|
|
||
|
if not test $last_status -eq 0
|
||
|
set_color $fish_color_error
|
||
|
end
|
||
|
|
||
|
echo -n '➤ '
|
||
|
set_color normal
|
||
|
end
|