[aws/sorinmod] Show aws profile in prompt

This commit is contained in:
daniel.carrillo 2019-11-06 17:28:19 +01:00
parent 13f3cabd81
commit ed511e6747
2 changed files with 27 additions and 1 deletions

View File

@ -0,0 +1,21 @@
#
# Exposes information about the AWS_PROFILE environment via the $aws_info associative
# array.
#
# function aws-info {
local profile_format
local profile_formatted
unset aws_info
typeset -gA aws_info
if [[ -n "$AWS_PROFILE" ]]; then
zstyle -s ':prezto:module:aws:info:profile' format 'profile_format'
zformat -f profile_formatted "$profile_format" "v:${AWS_PROFILE:t}"
aws_info[profile]="$profile_formatted"
fi
# }

View File

@ -108,6 +108,11 @@ function prompt_sorin_precmd {
os-info
fi
# Get AWS profile information.
if (( $+functions[aws-info] )); then
aws-info
fi
prompt_sorin_async_tasks
}
@ -172,7 +177,7 @@ function prompt_sorin_setup {
# Define prompts.
PROMPT='${SSH_TTY:+"%F{9}%n%f%F{7}@%f%F{3}%m%f "}%F{4}${_prompt_sorin_pwd}%(!. %B%F{1}#%f%b.)${editor_info[keymap]} '
RPROMPT='${os_info:+${os_info[tenant]} }$python_info[virtualenv]${editor_info[overwrite]}%(?:: %F{1}'
RPROMPT='${os_info:+${os_info[tenant]} }${aws_info:+${aws_info[profile]} }$python_info[virtualenv]${editor_info[overwrite]}%(?:: %F{1}'
RPROMPT+=${show_return}
RPROMPT+='%f)${VIM:+" %B%F{6}V%f%b"}${_prompt_sorin_git}'
SPROMPT='zsh: correct %F{1}%R%f to %F{2}%r%f [nyae]? '