mirror of
https://github.com/ohmybash/oh-my-bash.git
synced 2024-05-11 05:55:37 +00:00
Merge pull request #335 from juanswan13/patch-1
themes/sirup: Show Python virtual environments
This commit is contained in:
@ -1,6 +1,9 @@
|
|||||||
#! bash oh-my-bash.module
|
#! bash oh-my-bash.module
|
||||||
# For unstaged(*) and staged(+) values next to branch name in __git_ps1
|
# For unstaged(*) and staged(+) values next to branch name in __git_ps1
|
||||||
GIT_PS1_SHOWDIRTYSTATE="enabled"
|
GIT_PS1_SHOWDIRTYSTATE="enabled"
|
||||||
|
OMB_PROMPT_VIRTUALENV_FORMAT=' [%s]'
|
||||||
|
OMB_PROMPT_CONDAENV_FORMAT=' [%s]'
|
||||||
|
OMB_PROMPT_SHOW_PYTHON_VENV=${OMB_PROMPT_SHOW_PYTHON_VENV:=false}
|
||||||
|
|
||||||
function _omb_theme_sirup_rubygem {
|
function _omb_theme_sirup_rubygem {
|
||||||
local gemset=$(command awk -F'@' '{print $2}' <<< "$GEM_HOME")
|
local gemset=$(command awk -F'@' '{print $2}' <<< "$GEM_HOME")
|
||||||
@ -15,7 +18,9 @@ function _omb_theme_sirup_rubygem {
|
|||||||
|
|
||||||
function _omb_theme_PROMPT_COMMAND {
|
function _omb_theme_PROMPT_COMMAND {
|
||||||
# Check http://github.com/Sirupsen/dotfiles for screenshot
|
# Check http://github.com/Sirupsen/dotfiles for screenshot
|
||||||
PS1="$_omb_prompt_navy\W/$_omb_prompt_bold_navy$(_omb_theme_sirup_rubygem)$_omb_prompt_bold_green$(__git_ps1 " (%s)") ${_omb_prompt_normal}$ "
|
local python_venv
|
||||||
|
_omb_prompt_get_python_venv
|
||||||
|
PS1="$_omb_prompt_navy\W/$_omb_prompt_bold_navy$(_omb_theme_sirup_rubygem)$_omb_prompt_bold_purple$python_venv$_omb_prompt_bold_green$(__git_ps1 " (%s)") ${_omb_prompt_normal}$ "
|
||||||
}
|
}
|
||||||
|
|
||||||
_omb_util_add_prompt_command _omb_theme_PROMPT_COMMAND
|
_omb_util_add_prompt_command _omb_theme_PROMPT_COMMAND
|
||||||
|
Reference in New Issue
Block a user