mirror of https://github.com/ohmyzsh/ohmyzsh.git
Compare commits
3 Commits
ab896e0df4
...
fbac8adcd1
Author | SHA1 | Date |
---|---|---|
|
fbac8adcd1 | |
|
1c34b0e67d | |
|
0047214255 |
|
@ -2,9 +2,9 @@ function tf_prompt_info() {
|
|||
# dont show 'default' workspace in home dir
|
||||
[[ "$PWD" != ~ ]] || return
|
||||
# check if in terraform dir and file exists
|
||||
[[ -d .terraform && -r .terraform/environment ]] || return
|
||||
[[ -d "${TF_DATA_DIR:-.terraform}" && -r "${TF_DATA_DIR:-.terraform}/environment" ]] || return
|
||||
|
||||
local workspace="$(< .terraform/environment)"
|
||||
local workspace="$(< "${TF_DATA_DIR:-.terraform}/environment")"
|
||||
echo "${ZSH_THEME_TF_PROMPT_PREFIX-[}${workspace:gs/%/%%}${ZSH_THEME_TF_PROMPT_SUFFIX-]}"
|
||||
}
|
||||
|
||||
|
|
|
@ -34,9 +34,10 @@
|
|||
|
||||
CURRENT_BG='NONE'
|
||||
|
||||
# Set CURRENT_FG unless already set in .zshenv
|
||||
case ${SOLARIZED_THEME:-dark} in
|
||||
light) CURRENT_FG='white';;
|
||||
*) CURRENT_FG='black';;
|
||||
light) CURRENT_FG=${CURRENT_FG:-white};;
|
||||
*) CURRENT_FG=${CURRENT_FG:-black};;
|
||||
esac
|
||||
|
||||
# Special Powerline characters
|
||||
|
|
Loading…
Reference in New Issue