mirror of
https://github.com/ViViDboarder/shoestrap.git
synced 2024-11-24 03:06:31 +00:00
Add virtualenv to PS1
This commit is contained in:
parent
a37ec4100f
commit
e49a8009af
@ -47,6 +47,12 @@ function ps_host_name {
|
||||
[ -z $TMUX ] || return && echo '\h '
|
||||
}
|
||||
|
||||
function ps_virtual_env {
|
||||
[ -z "$VIRTUAL_ENV" ] && return
|
||||
venv=$(basename "$VIRTUAL_ENV") || return
|
||||
echo " [$venv]"
|
||||
}
|
||||
|
||||
# Alias for colors
|
||||
RED="\[\033[0;31m\]"
|
||||
YELLOW="\[\033[0;33m\]"
|
||||
@ -54,7 +60,7 @@ GREEN="\[\033[0;32m\]"
|
||||
ENDCOLOR="\[\e[0m\]"
|
||||
|
||||
# New prompt format
|
||||
PS1="$(ps_host_name)\W$YELLOW\$(ps_git_branch)$ENDCOLOR$GREEN\$(ps_atf_target)\$(ps_force_target)$ENDCOLOR\$ "
|
||||
PS1="$(ps_host_name)\W$YELLOW\$(ps_git_branch)$ENDCOLOR$GREEN\$(ps_atf_target)\$(ps_force_target)\$(ps_virtual_env)$ENDCOLOR\$ "
|
||||
|
||||
# Prompt Title
|
||||
export PROMPT_COMMAND='echo -ne "\033]0;${PWD/#$HOME/~}\007"'
|
||||
|
Loading…
Reference in New Issue
Block a user