make right prompt multiline; add public_ip

This commit is contained in:
romkatv 2019-07-17 00:55:34 +02:00
parent 30c160926d
commit ef041b4364

View file

@ -14,6 +14,7 @@ fi
# Line #1
dir # current directory
vcs # git status
# Line #2
newline
prompt_char # prompt symbol
@ -24,6 +25,7 @@ fi
# automatically hidden when the input line reaches it. Right prompt above the
# last prompt line gets hidden if it would overlap with left prompt.
typeset -ga POWERLEVEL9K_RIGHT_PROMPT_ELEMENTS=(
# Line #1
status # exit code of the last command
command_execution_time # duration of the last command
background_jobs # presence of background jobs
@ -36,6 +38,10 @@ fi
# node_version # node.js version
# kubecontext # current kubernetes context (https://kubernetes.io/)
context # user@host
# Line #2
newline
# public_ip # public IP address
# time # current time
)
@ -241,6 +247,9 @@ fi
# Show the trailing "/default" in kubernetes context.
typeset -g POWERLEVEL9K_KUBECONTEXT_SHOW_DEFAULT_NAMESPACE=true
# Public IP color.
typeset -g POWERLEVEL9K_PUBLIC_IP_FOREGROUND=144
# Current time color.
typeset -g POWERLEVEL9K_TIME_FOREGROUND=66
# Format for the current time: 09:51:02. See `man 3 strftime`.