mirror of
https://github.com/oh-my-fish/oh-my-fish.git
synced 2024-12-03 23:37:11 +08:00
28 lines
554 B
Fish
28 lines
554 B
Fish
|
function fish_prompt
|
||
|
set_color yellow
|
||
|
printf '%s' (whoami)
|
||
|
set_color normal
|
||
|
printf ' at '
|
||
|
|
||
|
set_color magenta
|
||
|
printf '%s' (hostname|cut -d . -f 1)
|
||
|
set_color normal
|
||
|
printf ' in '
|
||
|
|
||
|
set_color $fish_color_cwd
|
||
|
printf '%s ' (prompt_pwd)
|
||
|
set_color blue
|
||
|
printf '%s' (/Users/jrogers/bin/TBytes.sh)
|
||
|
set_color normal
|
||
|
printf '%s' (__fish_git_prompt)
|
||
|
|
||
|
# Line 2
|
||
|
echo
|
||
|
if test $VIRTUAL_ENV
|
||
|
printf "(%s) " (set_color blue)(basename $VIRTUAL_ENV)(set_color normal)
|
||
|
end
|
||
|
printf '↪ '
|
||
|
set_color normal
|
||
|
end
|
||
|
|