mirror of
https://github.com/dcarrillo/prezto.git
synced 2024-12-22 11:38:00 +00:00
[aws/sorinmod] Show aws profile in prompt
This commit is contained in:
parent
13f3cabd81
commit
ed511e6747
21
modules/aws/functions/aws-info
Normal file
21
modules/aws/functions/aws-info
Normal 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
|
||||
|
||||
# }
|
@ -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]? '
|
||||
|
Loading…
Reference in New Issue
Block a user