mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-13 17:30:08 +00:00
Make the virtualenv plugin themable
This commit is contained in:
parent
c79e5a97a9
commit
d608fbfc7f
1 changed files with 2 additions and 3 deletions
|
@ -1,7 +1,6 @@
|
||||||
function virtualenv_prompt_info(){
|
function virtualenv_prompt_info(){
|
||||||
if [[ -n $VIRTUAL_ENV ]]; then
|
[[ -n ${VIRTUAL_ENV} ]] || return
|
||||||
printf "%s[%s] " "%{${fg[yellow]}%}" ${${VIRTUAL_ENV}:t}
|
echo "${ZSH_THEME_VIRTUALENV_PREFIX:=[}${VIRTUAL_ENV:t}${ZSH_THEME_VIRTUALENV_SUFFIX:=]}"
|
||||||
fi
|
|
||||||
}
|
}
|
||||||
|
|
||||||
# disables prompt mangling in virtual_env/bin/activate
|
# disables prompt mangling in virtual_env/bin/activate
|
||||||
|
|
Loading…
Reference in a new issue