1
0
mirror of https://github.com/dcarrillo/prezto.git synced 2025-07-01 19:49:25 +00:00

[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
# }