2012-09-06 01:30:26 -07:00
|
|
|
# name: Simple Pythonista
|
|
|
|
# author: davbo
|
|
|
|
|
|
|
|
|
|
|
|
function fish_prompt
|
2016-11-01 19:19:45 -07:00
|
|
|
if not set -q VIRTUAL_ENV_DISABLE_PROMPT
|
|
|
|
set -g VIRTUAL_ENV_DISABLE_PROMPT true
|
|
|
|
end
|
|
|
|
set_color yellow
|
2019-09-18 23:35:16 -07:00
|
|
|
printf '%s' $USER
|
2016-11-01 19:19:45 -07:00
|
|
|
set_color normal
|
|
|
|
printf ' at '
|
2012-09-06 01:30:26 -07:00
|
|
|
|
2016-11-01 19:19:45 -07:00
|
|
|
set_color magenta
|
|
|
|
echo -n (prompt_hostname)
|
|
|
|
set_color normal
|
|
|
|
printf ' in '
|
2012-09-06 01:30:26 -07:00
|
|
|
|
2016-11-01 19:19:45 -07:00
|
|
|
set_color $fish_color_cwd
|
|
|
|
printf '%s' (prompt_pwd)
|
|
|
|
set_color normal
|
2012-09-06 01:30:26 -07:00
|
|
|
|
2016-11-01 19:19:45 -07:00
|
|
|
# Line 2
|
|
|
|
echo
|
2021-03-11 16:53:58 +01:00
|
|
|
if test -n "$VIRTUAL_ENV"
|
2016-11-01 19:19:45 -07:00
|
|
|
printf "(%s) " (set_color blue)(basename $VIRTUAL_ENV)(set_color normal)
|
|
|
|
end
|
|
|
|
printf '↪ '
|
|
|
|
set_color normal
|
2012-09-06 01:30:26 -07:00
|
|
|
end
|