mirror of
https://github.com/robbyrussell/oh-my-zsh.git
synced 2025-12-06 07:20:40 +01:00
6 lines
202 B
Bash
6 lines
202 B
Bash
function spackenv_prompt_info(){
|
|
[[ -n ${SPACK_ENV} ]] || return
|
|
export SPACK_ENV_PROMPT=${SPACK_ENV:t}
|
|
echo "${ZSH_THEME_SPACKENV_PREFIX=(}${SPACK_ENV:t:gs/%/%%}${ZSH_THEME_SPACKENV_SUFFIX=)}"
|
|
}
|