fixed tmux crash on ssh login
This commit is contained in:
parent
0e5b114171
commit
2b3fd02e21
3 changed files with 402 additions and 128 deletions
521
.p10k.zsh
521
.p10k.zsh
|
@ -1,7 +1,8 @@
|
||||||
# Generated by Powerlevel10k configuration wizard on 2019-12-18 at 22:19 EST.
|
# Generated by Powerlevel10k configuration wizard on 2020-02-12 at 15:39 EST.
|
||||||
# Based on romkatv/powerlevel10k/config/p10k-classic.zsh, checksum 58903.
|
# Based on romkatv/powerlevel10k/config/p10k-classic.zsh, checksum 41746.
|
||||||
# Wizard options: powerline, classic, dark, time, angled separators, blurred heads,
|
# Wizard options: powerline, classic, light, time, angled separators, sharp heads,
|
||||||
# sharp tails, 2 lines, solid, no frame, sparse, fluent.
|
# flat tails, 2 lines, solid, no frame, sparse, fluent, transient_prompt,
|
||||||
|
# instant_prompt=off.
|
||||||
# Type `p10k configure` to generate another config.
|
# Type `p10k configure` to generate another config.
|
||||||
#
|
#
|
||||||
# Config for Powerlevel10k with classic powerline prompt style. Type `p10k configure` to generate
|
# Config for Powerlevel10k with classic powerline prompt style. Type `p10k configure` to generate
|
||||||
|
@ -9,7 +10,7 @@
|
||||||
#
|
#
|
||||||
# Tip: Looking for a nice color? Here's a one-liner to print colormap.
|
# Tip: Looking for a nice color? Here's a one-liner to print colormap.
|
||||||
#
|
#
|
||||||
# for i in {0..255}; do print -Pn "%${i}F${(l:3::0:)i}%f " ${${(M)$((i%8)):#7}:+$'\n'}; done
|
# for i in {0..255}; do print -Pn "%K{$i} %k%F{$i}${(l:3::0:)i}%f " ${${(M)$((i%8)):#7}:+$'\n'}; done
|
||||||
|
|
||||||
# Temporarily change options.
|
# Temporarily change options.
|
||||||
'builtin' 'local' '-a' 'p10k_config_opts'
|
'builtin' 'local' '-a' 'p10k_config_opts'
|
||||||
|
@ -21,24 +22,27 @@
|
||||||
() {
|
() {
|
||||||
emulate -L zsh
|
emulate -L zsh
|
||||||
setopt no_unset extended_glob
|
setopt no_unset extended_glob
|
||||||
zmodload zsh/langinfo
|
|
||||||
if [[ ${langinfo[CODESET]:-} != (utf|UTF)(-|)8 ]]; then
|
|
||||||
local LC_ALL=${${(@M)$(locale -a):#*.(utf|UTF)(-|)8}[1]:-en_US.UTF-8}
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Unset all configuration options. This allows you to apply configiguration changes without
|
# Unset all configuration options. This allows you to apply configiguration changes without
|
||||||
# restarting zsh. Edit ~/.p10k.zsh and type `source ~/.p10k.zsh`.
|
# restarting zsh. Edit ~/.p10k.zsh and type `source ~/.p10k.zsh`.
|
||||||
unset -m 'POWERLEVEL9K_*'
|
unset -m 'POWERLEVEL9K_*'
|
||||||
|
|
||||||
|
autoload -Uz is-at-least && is-at-least 5.1 || return
|
||||||
|
|
||||||
|
zmodload zsh/langinfo
|
||||||
|
if [[ ${langinfo[CODESET]:-} != (utf|UTF)(-|)8 ]]; then
|
||||||
|
local LC_ALL=${${(@M)$(locale -a):#*.(utf|UTF)(-|)8}[1]:-en_US.UTF-8}
|
||||||
|
fi
|
||||||
|
|
||||||
# The list of segments shown on the left. Fill it with the most important segments.
|
# The list of segments shown on the left. Fill it with the most important segments.
|
||||||
typeset -g POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(
|
typeset -g POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(
|
||||||
# =========================[ Line #1 ]=========================
|
# =========================[ Line #1 ]=========================
|
||||||
# os_icon # os identifier
|
# os_icon # os identifier
|
||||||
dir # current directory
|
dir # current directory
|
||||||
vcs # git status
|
vcs # git status
|
||||||
# =========================[ Line #2 ]=========================
|
# =========================[ Line #2 ]=========================
|
||||||
newline
|
newline # \n
|
||||||
prompt_char # prompt symbol
|
prompt_char # prompt symbol
|
||||||
)
|
)
|
||||||
|
|
||||||
# The list of segments shown on the right. Fill it with less important segments.
|
# The list of segments shown on the right. Fill it with less important segments.
|
||||||
|
@ -46,46 +50,59 @@
|
||||||
# automatically hidden when the input line reaches it. Right prompt above the
|
# automatically hidden when the input line reaches it. Right prompt above the
|
||||||
# last prompt line gets hidden if it would overlap with left prompt.
|
# last prompt line gets hidden if it would overlap with left prompt.
|
||||||
typeset -g POWERLEVEL9K_RIGHT_PROMPT_ELEMENTS=(
|
typeset -g POWERLEVEL9K_RIGHT_PROMPT_ELEMENTS=(
|
||||||
# =========================[ Line #1 ]=========================
|
# =========================[ Line #1 ]=========================
|
||||||
status # exit code of the last command
|
status # exit code of the last command
|
||||||
command_execution_time # duration of the last command
|
command_execution_time # duration of the last command
|
||||||
background_jobs # presence of background jobs
|
background_jobs # presence of background jobs
|
||||||
direnv # direnv status (https://direnv.net/)
|
direnv # direnv status (https://direnv.net/)
|
||||||
virtualenv # python virtual environment (https://docs.python.org/3/library/venv.html)
|
virtualenv # python virtual environment (https://docs.python.org/3/library/venv.html)
|
||||||
anaconda # conda environment (https://conda.io/)
|
anaconda # conda environment (https://conda.io/)
|
||||||
pyenv # python environment (https://github.com/pyenv/pyenv)
|
pyenv # python environment (https://github.com/pyenv/pyenv)
|
||||||
nodenv # node.js version from nodenv (https://github.com/nodenv/nodenv)
|
goenv # go environment (https://github.com/syndbg/goenv)
|
||||||
nvm # node.js version from nvm (https://github.com/nvm-sh/nvm)
|
nodenv # node.js version from nodenv (https://github.com/nodenv/nodenv)
|
||||||
nodeenv # node.js environment (https://github.com/ekalinin/nodeenv)
|
nvm # node.js version from nvm (https://github.com/nvm-sh/nvm)
|
||||||
# node_version # node.js version
|
nodeenv # node.js environment (https://github.com/ekalinin/nodeenv)
|
||||||
# go_version # go version (https://golang.org)
|
# node_version # node.js version
|
||||||
# rust_version # rustc version (https://www.rust-lang.org)
|
# go_version # go version (https://golang.org)
|
||||||
# dotnet_version # .NET version (https://dotnet.microsoft.com)
|
# rust_version # rustc version (https://www.rust-lang.org)
|
||||||
rbenv # ruby version from rbenv (https://github.com/rbenv/rbenv)
|
# dotnet_version # .NET version (https://dotnet.microsoft.com)
|
||||||
rvm # ruby version from rvm (https://rvm.io)
|
rbenv # ruby version from rbenv (https://github.com/rbenv/rbenv)
|
||||||
kubecontext # current kubernetes context (https://kubernetes.io/)
|
rvm # ruby version from rvm (https://rvm.io)
|
||||||
terraform # terraform workspace (https://www.terraform.io)
|
fvm # flutter version management (https://github.com/leoafarias/fvm)
|
||||||
aws # aws profile (https://docs.aws.amazon.com/cli/latest/userguide/cli-configure-profiles.html)
|
luaenv # lua version from luaenv (https://github.com/cehoffman/luaenv)
|
||||||
# aws_eb_env # aws elastic beanstalk environment (https://aws.amazon.com/elasticbeanstalk/)
|
jenv # java version from jenv (https://github.com/jenv/jenv)
|
||||||
# azure # azure account name (https://docs.microsoft.com/en-us/cli/azure)
|
plenv # perl version from plenv (https://github.com/tokuhirom/plenv)
|
||||||
context # user@hostname
|
kubecontext # current kubernetes context (https://kubernetes.io/)
|
||||||
nordvpn # nordvpn connection status, linux only (https://nordvpn.com/)
|
terraform # terraform workspace (https://www.terraform.io)
|
||||||
ranger # ranger shell (https://github.com/ranger/ranger)
|
aws # aws profile (https://docs.aws.amazon.com/cli/latest/userguide/cli-configure-profiles.html)
|
||||||
vi_mode # vi mode (you don't need this if you've enabled prompt_char)
|
aws_eb_env # aws elastic beanstalk environment (https://aws.amazon.com/elasticbeanstalk/)
|
||||||
# vpn_ip # virtual private network indicator
|
azure # azure account name (https://docs.microsoft.com/en-us/cli/azure)
|
||||||
# ram # free RAM
|
gcloud # google cloud cli account and project (https://cloud.google.com/)
|
||||||
# load # CPU load
|
google_app_cred # google application credentials (https://cloud.google.com/docs/authentication/production)
|
||||||
time # current time
|
context # user@hostname
|
||||||
# =========================[ Line #2 ]=========================
|
nordvpn # nordvpn connection status, linux only (https://nordvpn.com/)
|
||||||
newline
|
ranger # ranger shell (https://github.com/ranger/ranger)
|
||||||
# public_ip # public IP address
|
nnn # nnn shell (https://github.com/jarun/nnn)
|
||||||
# proxy # system-wide http/https/ftp proxy
|
vim_shell # vim shell indicator (:sh)
|
||||||
# battery # internal battery
|
midnight_commander # midnight commander shell (https://midnight-commander.org/)
|
||||||
# example # example user-defined segment (see prompt_example function below)
|
nix_shell # nix shell (https://nixos.org/nixos/nix-pills/developing-with-nix-shell.html)
|
||||||
|
vi_mode # vi mode (you don't need this if you've enabled prompt_char)
|
||||||
|
# vpn_ip # virtual private network indicator
|
||||||
|
# load # CPU load
|
||||||
|
# disk_usage # disk usage
|
||||||
|
# ram # free RAM
|
||||||
|
# swap # used swap
|
||||||
|
todo # todo items (https://github.com/todotxt/todo.txt-cli)
|
||||||
|
timewarrior # timewarrior tracking status (https://timewarrior.net/)
|
||||||
|
time # current time
|
||||||
|
# =========================[ Line #2 ]=========================
|
||||||
|
newline # \n
|
||||||
|
# public_ip # public IP address
|
||||||
|
# proxy # system-wide http/https/ftp proxy
|
||||||
|
# battery # internal battery
|
||||||
|
# example # example user-defined segment (see prompt_example function below)
|
||||||
)
|
)
|
||||||
|
|
||||||
# To disable default icons for all segments, set POWERLEVEL9K_VISUAL_IDENTIFIER_EXPANSION=''.
|
|
||||||
#
|
|
||||||
# To enable default icons for all segments, don't define POWERLEVEL9K_VISUAL_IDENTIFIER_EXPANSION
|
# To enable default icons for all segments, don't define POWERLEVEL9K_VISUAL_IDENTIFIER_EXPANSION
|
||||||
# or set it to '${P9K_VISUAL_IDENTIFIER}'.
|
# or set it to '${P9K_VISUAL_IDENTIFIER}'.
|
||||||
#
|
#
|
||||||
|
@ -166,7 +183,7 @@
|
||||||
if [[ $POWERLEVEL9K_MULTILINE_FIRST_PROMPT_GAP_CHAR != ' ' ]]; then
|
if [[ $POWERLEVEL9K_MULTILINE_FIRST_PROMPT_GAP_CHAR != ' ' ]]; then
|
||||||
# The color of the filler. You'll probably want to match the color of POWERLEVEL9K_MULTILINE
|
# The color of the filler. You'll probably want to match the color of POWERLEVEL9K_MULTILINE
|
||||||
# ornaments defined above.
|
# ornaments defined above.
|
||||||
typeset -g POWERLEVEL9K_MULTILINE_FIRST_PROMPT_GAP_FOREGROUND=240
|
typeset -g POWERLEVEL9K_MULTILINE_FIRST_PROMPT_GAP_FOREGROUND=242
|
||||||
# Start filler from the edge of the screen if there are no left segments on the first line.
|
# Start filler from the edge of the screen if there are no left segments on the first line.
|
||||||
typeset -g POWERLEVEL9K_EMPTY_LINE_LEFT_PROMPT_FIRST_SEGMENT_END_SYMBOL='%{%}'
|
typeset -g POWERLEVEL9K_EMPTY_LINE_LEFT_PROMPT_FIRST_SEGMENT_END_SYMBOL='%{%}'
|
||||||
# End filler on the edge of the screen if there are no right segments on the first line.
|
# End filler on the edge of the screen if there are no right segments on the first line.
|
||||||
|
@ -174,24 +191,24 @@
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Default background color.
|
# Default background color.
|
||||||
typeset -g POWERLEVEL9K_BACKGROUND=236
|
typeset -g POWERLEVEL9K_BACKGROUND=238
|
||||||
|
|
||||||
# Separator between same-color segments on the left.
|
# Separator between same-color segments on the left.
|
||||||
typeset -g POWERLEVEL9K_LEFT_SUBSEGMENT_SEPARATOR='%244F\uE0B1'
|
typeset -g POWERLEVEL9K_LEFT_SUBSEGMENT_SEPARATOR='%246F\uE0B1'
|
||||||
# Separator between same-color segments on the right.
|
# Separator between same-color segments on the right.
|
||||||
typeset -g POWERLEVEL9K_RIGHT_SUBSEGMENT_SEPARATOR='%244F\uE0B3'
|
typeset -g POWERLEVEL9K_RIGHT_SUBSEGMENT_SEPARATOR='%246F\uE0B3'
|
||||||
# Separator between different-color segments on the left.
|
# Separator between different-color segments on the left.
|
||||||
typeset -g POWERLEVEL9K_LEFT_SEGMENT_SEPARATOR='\uE0B0'
|
typeset -g POWERLEVEL9K_LEFT_SEGMENT_SEPARATOR='\uE0B0'
|
||||||
# Separator between different-color segments on the right.
|
# Separator between different-color segments on the right.
|
||||||
typeset -g POWERLEVEL9K_RIGHT_SEGMENT_SEPARATOR='\uE0B2'
|
typeset -g POWERLEVEL9K_RIGHT_SEGMENT_SEPARATOR='\uE0B2'
|
||||||
# The right end of left prompt.
|
# The right end of left prompt.
|
||||||
typeset -g POWERLEVEL9K_LEFT_PROMPT_LAST_SEGMENT_END_SYMBOL='▓▒░'
|
typeset -g POWERLEVEL9K_LEFT_PROMPT_LAST_SEGMENT_END_SYMBOL='\uE0B0'
|
||||||
# The left end of right prompt.
|
# The left end of right prompt.
|
||||||
typeset -g POWERLEVEL9K_RIGHT_PROMPT_FIRST_SEGMENT_START_SYMBOL='░▒▓'
|
typeset -g POWERLEVEL9K_RIGHT_PROMPT_FIRST_SEGMENT_START_SYMBOL='\uE0B2'
|
||||||
# The left end of left prompt.
|
# The left end of left prompt.
|
||||||
typeset -g POWERLEVEL9K_LEFT_PROMPT_FIRST_SEGMENT_START_SYMBOL='\uE0B2'
|
typeset -g POWERLEVEL9K_LEFT_PROMPT_FIRST_SEGMENT_START_SYMBOL=''
|
||||||
# The right end of right prompt.
|
# The right end of right prompt.
|
||||||
typeset -g POWERLEVEL9K_RIGHT_PROMPT_LAST_SEGMENT_END_SYMBOL='\uE0B0'
|
typeset -g POWERLEVEL9K_RIGHT_PROMPT_LAST_SEGMENT_END_SYMBOL=''
|
||||||
# Left prompt terminator for lines without any segments.
|
# Left prompt terminator for lines without any segments.
|
||||||
typeset -g POWERLEVEL9K_EMPTY_LINE_LEFT_PROMPT_LAST_SEGMENT_END_SYMBOL=
|
typeset -g POWERLEVEL9K_EMPTY_LINE_LEFT_PROMPT_LAST_SEGMENT_END_SYMBOL=
|
||||||
|
|
||||||
|
@ -264,6 +281,7 @@
|
||||||
# be either absolute (e.g., '80') or a percentage of terminal width (e.g, '50%'). If empty,
|
# be either absolute (e.g., '80') or a percentage of terminal width (e.g, '50%'). If empty,
|
||||||
# directory will be shortened only when prompt doesn't fit or when other parameters demand it
|
# directory will be shortened only when prompt doesn't fit or when other parameters demand it
|
||||||
# (see POWERLEVEL9K_DIR_MIN_COMMAND_COLUMNS and POWERLEVEL9K_DIR_MIN_COMMAND_COLUMNS_PCT below).
|
# (see POWERLEVEL9K_DIR_MIN_COMMAND_COLUMNS and POWERLEVEL9K_DIR_MIN_COMMAND_COLUMNS_PCT below).
|
||||||
|
# If set to `0`, directory will always be shortened to its minimum length.
|
||||||
typeset -g POWERLEVEL9K_DIR_MAX_LENGTH=80
|
typeset -g POWERLEVEL9K_DIR_MAX_LENGTH=80
|
||||||
# When `dir` segment is on the last prompt line, try to shorten it enough to leave at least this
|
# When `dir` segment is on the last prompt line, try to shorten it enough to leave at least this
|
||||||
# many columns for typing commands.
|
# many columns for typing commands.
|
||||||
|
@ -284,7 +302,7 @@
|
||||||
typeset -g POWERLEVEL9K_DIR_NOT_WRITABLE_VISUAL_IDENTIFIER_EXPANSION='∅'
|
typeset -g POWERLEVEL9K_DIR_NOT_WRITABLE_VISUAL_IDENTIFIER_EXPANSION='∅'
|
||||||
|
|
||||||
# Custom prefix.
|
# Custom prefix.
|
||||||
# typeset -g POWERLEVEL9K_DIR_PREFIX='%246Fin '
|
# typeset -g POWERLEVEL9K_DIR_PREFIX='%248Fin '
|
||||||
|
|
||||||
# POWERLEVEL9K_DIR_CLASSES allows you to specify custom icons for different directories.
|
# POWERLEVEL9K_DIR_CLASSES allows you to specify custom icons for different directories.
|
||||||
# It must be an array with 3 * N elements. Each triplet consists of:
|
# It must be an array with 3 * N elements. Each triplet consists of:
|
||||||
|
@ -300,8 +318,8 @@
|
||||||
# Example:
|
# Example:
|
||||||
#
|
#
|
||||||
# typeset -g POWERLEVEL9K_DIR_CLASSES=(
|
# typeset -g POWERLEVEL9K_DIR_CLASSES=(
|
||||||
# '~/work(/*)#' WORK '(╯°□°)╯︵ ┻━┻'
|
# '~/work(|/*)' WORK '(╯°□°)╯︵ ┻━┻'
|
||||||
# '~(/*)#' HOME '⌂'
|
# '~(|/*)' HOME '⌂'
|
||||||
# '*' DEFAULT '')
|
# '*' DEFAULT '')
|
||||||
#
|
#
|
||||||
# With these settings, the current directory in the prompt may look like this:
|
# With these settings, the current directory in the prompt may look like this:
|
||||||
|
@ -352,7 +370,7 @@
|
||||||
|
|
||||||
if (( $1 )); then
|
if (( $1 )); then
|
||||||
# Styling for up-to-date Git status.
|
# Styling for up-to-date Git status.
|
||||||
local meta='%246F' # grey foreground
|
local meta='%248F' # grey foreground
|
||||||
local clean='%76F' # green foreground
|
local clean='%76F' # green foreground
|
||||||
local modified='%178F' # yellow foreground
|
local modified='%178F' # yellow foreground
|
||||||
local untracked='%39F' # blue foreground
|
local untracked='%39F' # blue foreground
|
||||||
|
@ -367,16 +385,13 @@
|
||||||
fi
|
fi
|
||||||
|
|
||||||
local res
|
local res
|
||||||
local where # branch name, tag or commit
|
local where # branch or tag
|
||||||
if [[ -n $VCS_STATUS_LOCAL_BRANCH ]]; then
|
if [[ -n $VCS_STATUS_LOCAL_BRANCH ]]; then
|
||||||
res+="${clean}${POWERLEVEL9K_VCS_BRANCH_ICON}"
|
res+="${clean}${POWERLEVEL9K_VCS_BRANCH_ICON}"
|
||||||
where=${(V)VCS_STATUS_LOCAL_BRANCH}
|
where=${(V)VCS_STATUS_LOCAL_BRANCH}
|
||||||
elif [[ -n $VCS_STATUS_TAG ]]; then
|
elif [[ -n $VCS_STATUS_TAG ]]; then
|
||||||
res+="${meta}#"
|
res+="${meta}#"
|
||||||
where=${(V)VCS_STATUS_TAG}
|
where=${(V)VCS_STATUS_TAG}
|
||||||
else
|
|
||||||
res+="${meta}@"
|
|
||||||
where=${VCS_STATUS_COMMIT[1,8]}
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# If local branch name or tag is at most 32 characters long, show it in full.
|
# If local branch name or tag is at most 32 characters long, show it in full.
|
||||||
|
@ -384,6 +399,10 @@
|
||||||
(( $#where > 32 )) && where[13,-13]="…"
|
(( $#where > 32 )) && where[13,-13]="…"
|
||||||
res+="${clean}${where//\%/%%}" # escape %
|
res+="${clean}${where//\%/%%}" # escape %
|
||||||
|
|
||||||
|
# Display the current Git commit if there is no branch or tag.
|
||||||
|
# Tip: To always display the current Git commit, remove `[[ -z $where ]] &&` from the next line.
|
||||||
|
[[ -z $where ]] && res+="${meta}@${clean}${VCS_STATUS_COMMIT[1,8]}"
|
||||||
|
|
||||||
# Show tracking branch name if it differs from local branch.
|
# Show tracking branch name if it differs from local branch.
|
||||||
if [[ -n ${VCS_STATUS_REMOTE_BRANCH:#$VCS_STATUS_LOCAL_BRANCH} ]]; then
|
if [[ -n ${VCS_STATUS_REMOTE_BRANCH:#$VCS_STATUS_LOCAL_BRANCH} ]]; then
|
||||||
res+="${meta}:${clean}${(V)VCS_STATUS_REMOTE_BRANCH//\%/%%}" # escape %
|
res+="${meta}:${clean}${(V)VCS_STATUS_REMOTE_BRANCH//\%/%%}" # escape %
|
||||||
|
@ -427,7 +446,7 @@
|
||||||
# Custom icon.
|
# Custom icon.
|
||||||
typeset -g POWERLEVEL9K_VCS_VISUAL_IDENTIFIER_EXPANSION=
|
typeset -g POWERLEVEL9K_VCS_VISUAL_IDENTIFIER_EXPANSION=
|
||||||
# Custom prefix.
|
# Custom prefix.
|
||||||
typeset -g POWERLEVEL9K_VCS_PREFIX='%246Fon '
|
typeset -g POWERLEVEL9K_VCS_PREFIX='%248Fon '
|
||||||
|
|
||||||
# Show status of repositories of these types. You can add svn and/or hg if you are
|
# Show status of repositories of these types. You can add svn and/or hg if you are
|
||||||
# using them. If you do, your prompt may become slow even when your current directory
|
# using them. If you do, your prompt may become slow even when your current directory
|
||||||
|
@ -488,21 +507,21 @@
|
||||||
# Custom icon.
|
# Custom icon.
|
||||||
typeset -g POWERLEVEL9K_COMMAND_EXECUTION_TIME_VISUAL_IDENTIFIER_EXPANSION=
|
typeset -g POWERLEVEL9K_COMMAND_EXECUTION_TIME_VISUAL_IDENTIFIER_EXPANSION=
|
||||||
# Custom prefix.
|
# Custom prefix.
|
||||||
typeset -g POWERLEVEL9K_COMMAND_EXECUTION_TIME_PREFIX='%246Ftook '
|
typeset -g POWERLEVEL9K_COMMAND_EXECUTION_TIME_PREFIX='%248Ftook '
|
||||||
|
|
||||||
#######################[ background_jobs: presence of background jobs ]#######################
|
#######################[ background_jobs: presence of background jobs ]#######################
|
||||||
# Don't show the number of background jobs.
|
# Don't show the number of background jobs.
|
||||||
typeset -g POWERLEVEL9K_BACKGROUND_JOBS_VERBOSE=false
|
typeset -g POWERLEVEL9K_BACKGROUND_JOBS_VERBOSE=false
|
||||||
# Background jobs color.
|
# Background jobs color.
|
||||||
typeset -g POWERLEVEL9K_BACKGROUND_JOBS_FOREGROUND=37
|
typeset -g POWERLEVEL9K_BACKGROUND_JOBS_FOREGROUND=37
|
||||||
# Icon to show when there are background jobs.
|
# Custom icon.
|
||||||
typeset -g POWERLEVEL9K_BACKGROUND_JOBS_VISUAL_IDENTIFIER_EXPANSION='≡'
|
typeset -g POWERLEVEL9K_BACKGROUND_JOBS_VISUAL_IDENTIFIER_EXPANSION='≡'
|
||||||
|
|
||||||
#######################[ direnv: direnv status (https://direnv.net/) ]########################
|
#######################[ direnv: direnv status (https://direnv.net/) ]########################
|
||||||
# Direnv color.
|
# Direnv color.
|
||||||
typeset -g POWERLEVEL9K_DIRENV_FOREGROUND=178
|
typeset -g POWERLEVEL9K_DIRENV_FOREGROUND=178
|
||||||
# Icon to show when direnv is active.
|
# Custom icon.
|
||||||
typeset -g POWERLEVEL9K_DIRENV_VISUAL_IDENTIFIER_EXPANSION='${P9K_VISUAL_IDENTIFIER}'
|
# typeset -g POWERLEVEL9K_DIRENV_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
||||||
|
|
||||||
##########[ nordvpn: nordvpn connection status, linux only (https://nordvpn.com/) ]###########
|
##########[ nordvpn: nordvpn connection status, linux only (https://nordvpn.com/) ]###########
|
||||||
# NordVPN connection indicator color.
|
# NordVPN connection indicator color.
|
||||||
|
@ -519,6 +538,47 @@
|
||||||
# Custom icon.
|
# Custom icon.
|
||||||
typeset -g POWERLEVEL9K_RANGER_VISUAL_IDENTIFIER_EXPANSION='▲'
|
typeset -g POWERLEVEL9K_RANGER_VISUAL_IDENTIFIER_EXPANSION='▲'
|
||||||
|
|
||||||
|
######################[ nnn: nnn shell (https://github.com/jarun/nnn) ]#######################
|
||||||
|
# Nnn shell color.
|
||||||
|
typeset -g POWERLEVEL9K_NNN_FOREGROUND=72
|
||||||
|
# Custom icon.
|
||||||
|
# typeset -g POWERLEVEL9K_NNN_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
||||||
|
|
||||||
|
###########################[ vim_shell: vim shell indicator (:sh) ]###########################
|
||||||
|
# Vim shell indicator color.
|
||||||
|
typeset -g POWERLEVEL9K_VIM_SHELL_FOREGROUND=34
|
||||||
|
# Custom icon.
|
||||||
|
# typeset -g POWERLEVEL9K_VIM_SHELL_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
||||||
|
|
||||||
|
######[ midnight_commander: midnight commander shell (https://midnight-commander.org/) ]######
|
||||||
|
# Midnight Commander shell color.
|
||||||
|
typeset -g POWERLEVEL9K_MIDNIGHT_COMMANDER_FOREGROUND=178
|
||||||
|
# Custom icon.
|
||||||
|
# typeset -g POWERLEVEL9K_MIDNIGHT_COMMANDER_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
||||||
|
|
||||||
|
#[ nix_shell: nix shell (https://nixos.org/nixos/nix-pills/developing-with-nix-shell.html) ]##
|
||||||
|
# Nix shell color.
|
||||||
|
typeset -g POWERLEVEL9K_NIX_SHELL_FOREGROUND=74
|
||||||
|
|
||||||
|
# Tip: If you want to see just the icon without "pure" and "impure", uncomment the next line.
|
||||||
|
# typeset -g POWERLEVEL9K_NIX_SHELL_CONTENT_EXPANSION=
|
||||||
|
|
||||||
|
# Custom icon.
|
||||||
|
# typeset -g POWERLEVEL9K_NIX_SHELL_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
||||||
|
|
||||||
|
##################################[ disk_usgae: disk usage ]##################################
|
||||||
|
# Colors for different levels of disk usage.
|
||||||
|
typeset -g POWERLEVEL9K_DISK_USAGE_NORMAL_FOREGROUND=35
|
||||||
|
typeset -g POWERLEVEL9K_DISK_USAGE_WARNING_FOREGROUND=220
|
||||||
|
typeset -g POWERLEVEL9K_DISK_USAGE_CRITICAL_FOREGROUND=160
|
||||||
|
# Thresholds for different levels of disk usage (percentage points).
|
||||||
|
typeset -g POWERLEVEL9K_DISK_USAGE_WARNING_LEVEL=90
|
||||||
|
typeset -g POWERLEVEL9K_DISK_USAGE_CRITICAL_LEVEL=95
|
||||||
|
# If set to true, hide disk usage when below $POWERLEVEL9K_DISK_USAGE_WARNING_LEVEL percent.
|
||||||
|
typeset -g POWERLEVEL9K_DISK_USAGE_ONLY_WARNING=false
|
||||||
|
# Custom icon.
|
||||||
|
# typeset -g POWERLEVEL9K_DISK_USAGE_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
||||||
|
|
||||||
###########[ vi_mode: vi mode (you don't need this if you've enabled prompt_char) ]###########
|
###########[ vi_mode: vi mode (you don't need this if you've enabled prompt_char) ]###########
|
||||||
# Text and color for normal (a.k.a. command) vi mode.
|
# Text and color for normal (a.k.a. command) vi mode.
|
||||||
typeset -g POWERLEVEL9K_VI_COMMAND_MODE_STRING=NORMAL
|
typeset -g POWERLEVEL9K_VI_COMMAND_MODE_STRING=NORMAL
|
||||||
|
@ -542,6 +602,12 @@
|
||||||
# Custom icon.
|
# Custom icon.
|
||||||
# typeset -g POWERLEVEL9K_RAM_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
# typeset -g POWERLEVEL9K_RAM_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
||||||
|
|
||||||
|
#####################################[ swap: used swap ]######################################
|
||||||
|
# Swap color.
|
||||||
|
typeset -g POWERLEVEL9K_SWAP_FOREGROUND=96
|
||||||
|
# Custom icon.
|
||||||
|
# typeset -g POWERLEVEL9K_SWAP_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
||||||
|
|
||||||
######################################[ load: CPU load ]######################################
|
######################################[ load: CPU load ]######################################
|
||||||
# Show average CPU load over this many last minutes. Valid values are 1, 5 and 15.
|
# Show average CPU load over this many last minutes. Valid values are 1, 5 and 15.
|
||||||
typeset -g POWERLEVEL9K_LOAD_WHICH=5
|
typeset -g POWERLEVEL9K_LOAD_WHICH=5
|
||||||
|
@ -554,16 +620,56 @@
|
||||||
# Custom icon.
|
# Custom icon.
|
||||||
# typeset -g POWERLEVEL9K_LOAD_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
# typeset -g POWERLEVEL9K_LOAD_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
||||||
|
|
||||||
##################################[ context: user@hostname ]##################################
|
################[ todo: todo items (https://github.com/todotxt/todo.txt-cli) ]################
|
||||||
# Default context color.
|
# Todo color.
|
||||||
typeset -g POWERLEVEL9K_CONTEXT_FOREGROUND=180
|
typeset -g POWERLEVEL9K_TODO_FOREGROUND=110
|
||||||
# Default context format: %n is username, %m is hostname.
|
# Hide todo when the total number of tasks is zero.
|
||||||
typeset -g POWERLEVEL9K_CONTEXT_TEMPLATE='%n%246F at %180F%m'
|
typeset -g POWERLEVEL9K_TODO_HIDE_ZERO_TOTAL=true
|
||||||
|
# Hide todo when the number of tasks after filtering is zero.
|
||||||
|
typeset -g POWERLEVEL9K_TODO_HIDE_ZERO_FILTERED=false
|
||||||
|
|
||||||
|
# Todo format. The following parameters are available within the expansion.
|
||||||
|
#
|
||||||
|
# - P9K_TODO_TOTAL_TASK_COUNT The total number of tasks.
|
||||||
|
# - P9K_TODO_FILTERED_TASK_COUNT The number of tasks after filtering.
|
||||||
|
#
|
||||||
|
# These variables correspond to the last line of the output of `todo.sh -p ls`:
|
||||||
|
#
|
||||||
|
# TODO: 24 of 42 tasks shown
|
||||||
|
#
|
||||||
|
# Here 24 is P9K_TODO_FILTERED_TASK_COUNT and 42 is P9K_TODO_TOTAL_TASK_COUNT.
|
||||||
|
#
|
||||||
|
# typeset -g POWERLEVEL9K_TODO_CONTENT_EXPANSION='$P9K_TODO_FILTERED_TASK_COUNT'
|
||||||
|
|
||||||
|
# Custom icon.
|
||||||
|
# typeset -g POWERLEVEL9K_TODO_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
||||||
|
|
||||||
|
###########[ timewarrior: timewarrior tracking status (https://timewarrior.net/) ]############
|
||||||
|
# Timewarrior color.
|
||||||
|
typeset -g POWERLEVEL9K_TIMEWARRIOR_FOREGROUND=110
|
||||||
|
# If the tracked task is longer than 24 characters, truncate and append "…".
|
||||||
|
# Tip: To always display tasks without truncation, delete the following parameter.
|
||||||
|
# Tip: To hide task names and display just the icon when time tracking is enabled, set the
|
||||||
|
# value of the following parameter to "".
|
||||||
|
typeset -g POWERLEVEL9K_TIMEWARRIOR_CONTENT_EXPANSION='${P9K_CONTENT:0:24}${${P9K_CONTENT:24}:+…}'
|
||||||
|
|
||||||
|
# Custom icon.
|
||||||
|
# typeset -g POWERLEVEL9K_TIMEWARRIOR_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
||||||
|
|
||||||
|
##################################[ context: user@hostname ]##################################
|
||||||
# Context color when running with privileges.
|
# Context color when running with privileges.
|
||||||
typeset -g POWERLEVEL9K_CONTEXT_ROOT_FOREGROUND=178
|
typeset -g POWERLEVEL9K_CONTEXT_ROOT_FOREGROUND=178
|
||||||
# Context format when running with privileges: %n is username, %m is hostname, %B for bold.
|
# Context color in SSH without privileges.
|
||||||
typeset -g POWERLEVEL9K_CONTEXT_ROOT_TEMPLATE='%n%246F at %227F%m'
|
typeset -g POWERLEVEL9K_CONTEXT_{REMOTE,REMOTE_SUDO}_FOREGROUND=180
|
||||||
|
# Default context color (no privileges, no SSH).
|
||||||
|
typeset -g POWERLEVEL9K_CONTEXT_FOREGROUND=180
|
||||||
|
|
||||||
|
# Context format when running with privileges: bold user@hostname.
|
||||||
|
typeset -g POWERLEVEL9K_CONTEXT_ROOT_TEMPLATE='%B%n@%m'
|
||||||
|
# Context format when in SSH without privileges: user@hostname.
|
||||||
|
typeset -g POWERLEVEL9K_CONTEXT_{REMOTE,REMOTE_SUDO}_TEMPLATE='%n@%m'
|
||||||
|
# Default context format (no privileges, no SSH): user@hostname.
|
||||||
|
typeset -g POWERLEVEL9K_CONTEXT_TEMPLATE='%n@%m'
|
||||||
|
|
||||||
# Don't show context unless running with privileges or in SSH.
|
# Don't show context unless running with privileges or in SSH.
|
||||||
# Tip: Remove the next line to always show context.
|
# Tip: Remove the next line to always show context.
|
||||||
|
@ -572,7 +678,7 @@
|
||||||
# Custom icon.
|
# Custom icon.
|
||||||
# typeset -g POWERLEVEL9K_CONTEXT_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
# typeset -g POWERLEVEL9K_CONTEXT_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
||||||
# Custom prefix.
|
# Custom prefix.
|
||||||
typeset -g POWERLEVEL9K_CONTEXT_PREFIX='%246Fwith '
|
typeset -g POWERLEVEL9K_CONTEXT_PREFIX='%248Fwith '
|
||||||
|
|
||||||
###[ virtualenv: python virtual environment (https://docs.python.org/3/library/venv.html) ]###
|
###[ virtualenv: python virtual environment (https://docs.python.org/3/library/venv.html) ]###
|
||||||
# Python virtual environment color.
|
# Python virtual environment color.
|
||||||
|
@ -597,11 +703,25 @@
|
||||||
################[ pyenv: python environment (https://github.com/pyenv/pyenv) ]################
|
################[ pyenv: python environment (https://github.com/pyenv/pyenv) ]################
|
||||||
# Pyenv color.
|
# Pyenv color.
|
||||||
typeset -g POWERLEVEL9K_PYENV_FOREGROUND=37
|
typeset -g POWERLEVEL9K_PYENV_FOREGROUND=37
|
||||||
# Don't show the current Python version if it's the same as global.
|
# Hide python version if it doesn't come from one of these sources.
|
||||||
|
typeset -g POWERLEVEL9K_PYENV_SOURCES=(shell local global)
|
||||||
|
# If set to false, hide python version if it's the same as global:
|
||||||
|
# $(pyenv version-name) == $(pyenv global).
|
||||||
typeset -g POWERLEVEL9K_PYENV_PROMPT_ALWAYS_SHOW=false
|
typeset -g POWERLEVEL9K_PYENV_PROMPT_ALWAYS_SHOW=false
|
||||||
# Custom icon.
|
# Custom icon.
|
||||||
# typeset -g POWERLEVEL9K_PYENV_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
# typeset -g POWERLEVEL9K_PYENV_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
||||||
|
|
||||||
|
################[ goenv: go environment (https://github.com/syndbg/goenv) ]################
|
||||||
|
# Goenv color.
|
||||||
|
typeset -g POWERLEVEL9K_GOENV_FOREGROUND=37
|
||||||
|
# Hide go version if it doesn't come from one of these sources.
|
||||||
|
typeset -g POWERLEVEL9K_GOENV_SOURCES=(shell local global)
|
||||||
|
# If set to false, hide go version if it's the same as global:
|
||||||
|
# $(goenv version-name) == $(goenv global).
|
||||||
|
typeset -g POWERLEVEL9K_GOENV_PROMPT_ALWAYS_SHOW=false
|
||||||
|
# Custom icon.
|
||||||
|
# typeset -g POWERLEVEL9K_GOENV_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
||||||
|
|
||||||
##########[ nodenv: node.js version from nodenv (https://github.com/nodenv/nodenv) ]##########
|
##########[ nodenv: node.js version from nodenv (https://github.com/nodenv/nodenv) ]##########
|
||||||
# Nodenv color.
|
# Nodenv color.
|
||||||
typeset -g POWERLEVEL9K_NODENV_FOREGROUND=70
|
typeset -g POWERLEVEL9K_NODENV_FOREGROUND=70
|
||||||
|
@ -661,7 +781,10 @@
|
||||||
#############[ rbenv: ruby version from rbenv (https://github.com/rbenv/rbenv) ]##############
|
#############[ rbenv: ruby version from rbenv (https://github.com/rbenv/rbenv) ]##############
|
||||||
# Rbenv color.
|
# Rbenv color.
|
||||||
typeset -g POWERLEVEL9K_RBENV_FOREGROUND=168
|
typeset -g POWERLEVEL9K_RBENV_FOREGROUND=168
|
||||||
# Don't show ruby version if it's the same as global: $(rbenv version-name) == $(rbenv global).
|
# Hide ruby version if it doesn't come from one of these sources.
|
||||||
|
typeset -g POWERLEVEL9K_RBENV_SOURCES=(shell local global)
|
||||||
|
# If set to false, hide ruby version if it's the same as global:
|
||||||
|
# $(rbenv version-name) == $(rbenv global).
|
||||||
typeset -g POWERLEVEL9K_RBENV_PROMPT_ALWAYS_SHOW=false
|
typeset -g POWERLEVEL9K_RBENV_PROMPT_ALWAYS_SHOW=false
|
||||||
# Custom icon.
|
# Custom icon.
|
||||||
# typeset -g POWERLEVEL9K_RBENV_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
# typeset -g POWERLEVEL9K_RBENV_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
||||||
|
@ -676,57 +799,81 @@
|
||||||
# Custom icon.
|
# Custom icon.
|
||||||
# typeset -g POWERLEVEL9K_RVM_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
# typeset -g POWERLEVEL9K_RVM_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
||||||
|
|
||||||
################[ terraform: terraform workspace (https://www.terraform.io) ]#################
|
###########[ fvm: flutter version management (https://github.com/leoafarias/fvm) ]############
|
||||||
# Terraform color.
|
# Fvm color.
|
||||||
typeset -g POWERLEVEL9K_TERRAFORM_FOREGROUND=38
|
typeset -g POWERLEVEL9K_FVM_FOREGROUND=38
|
||||||
# Custom icon.
|
# Custom icon.
|
||||||
typeset -g POWERLEVEL9K_TERRAFORM_VISUAL_IDENTIFIER_EXPANSION='tf'
|
# typeset -g POWERLEVEL9K_FVM_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
||||||
|
|
||||||
#[ aws: aws profile (https://docs.aws.amazon.com/cli/latest/userguide/cli-configure-profiles.html) ]#
|
##########[ luaenv: lua version from luaenv (https://github.com/cehoffman/luaenv) ]###########
|
||||||
# AWS profile color.
|
# Lua color.
|
||||||
typeset -g POWERLEVEL9K_AWS_DEFAULT_FOREGROUND=208
|
typeset -g POWERLEVEL9K_LUAENV_FOREGROUND=32
|
||||||
# POWERLEVEL9K_AWS_CLASSES is an array with even number of elements. The first element
|
# Hide lua version if it doesn't come from one of these sources.
|
||||||
# in each pair defines a pattern against which the current AWS profile gets matched.
|
typeset -g POWERLEVEL9K_LUAENV_SOURCES=(shell local global)
|
||||||
|
# If set to false, hide lua version if it's the same as global:
|
||||||
|
# $(luaenv version-name) == $(luaenv global).
|
||||||
|
typeset -g POWERLEVEL9K_LUAENV_PROMPT_ALWAYS_SHOW=false
|
||||||
|
# Custom icon.
|
||||||
|
# typeset -g POWERLEVEL9K_LUAENV_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
||||||
|
|
||||||
|
###############[ jenv: java version from jenv (https://github.com/jenv/jenv) ]################
|
||||||
|
# Java color.
|
||||||
|
typeset -g POWERLEVEL9K_JENV_FOREGROUND=32
|
||||||
|
# Hide java version if it doesn't come from one of these sources.
|
||||||
|
typeset -g POWERLEVEL9K_JENV_SOURCES=(shell local global)
|
||||||
|
# If set to false, hide java version if it's the same as global:
|
||||||
|
# $(jenv version-name) == $(jenv global).
|
||||||
|
typeset -g POWERLEVEL9K_JENV_PROMPT_ALWAYS_SHOW=false
|
||||||
|
# Custom icon.
|
||||||
|
# typeset -g POWERLEVEL9K_JENV_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
||||||
|
|
||||||
|
###########[ plenv: perl version from plenv (https://github.com/tokuhirom/plenv) ]############
|
||||||
|
# Perl color.
|
||||||
|
typeset -g POWERLEVEL9K_PLENV_FOREGROUND=67
|
||||||
|
# Hide perl version if it doesn't come from one of these sources.
|
||||||
|
typeset -g POWERLEVEL9K_PLENV_SOURCES=(shell local global)
|
||||||
|
# If set to false, hide perl version if it's the same as global:
|
||||||
|
# $(plenv version-name) == $(plenv global).
|
||||||
|
typeset -g POWERLEVEL9K_PLENV_PROMPT_ALWAYS_SHOW=false
|
||||||
|
# Custom icon.
|
||||||
|
# typeset -g POWERLEVEL9K_PLENV_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
||||||
|
|
||||||
|
################[ terraform: terraform workspace (https://www.terraform.io) ]#################
|
||||||
|
# POWERLEVEL9K_TERRAFORM_CLASSES is an array with even number of elements. The first element
|
||||||
|
# in each pair defines a pattern against which the current terraform workspace gets matched.
|
||||||
# More specifically, it's P9K_CONTENT prior to the application of context expansion (see below)
|
# More specifically, it's P9K_CONTENT prior to the application of context expansion (see below)
|
||||||
# that gets matched. If you unset all POWERLEVEL9K_AWS_*CONTENT_EXPANSION parameters,
|
# that gets matched. If you unset all POWERLEVEL9K_TERRAFORM_*CONTENT_EXPANSION parameters,
|
||||||
# you'll see this value in your prompt. The second element of each pair in
|
# you'll see this value in your prompt. The second element of each pair in
|
||||||
# POWERLEVEL9K_AWS_CLASSES defines the context class. Patterns are tried in order. The
|
# POWERLEVEL9K_TERRAFORM_CLASSES defines the workspace class. Patterns are tried in order. The
|
||||||
# first match wins.
|
# first match wins.
|
||||||
#
|
#
|
||||||
# For example, given these settings:
|
# For example, given these settings:
|
||||||
#
|
#
|
||||||
# typeset -g POWERLEVEL9K_AWS_CLASSES=(
|
# typeset -g POWERLEVEL9K_TERRAFORM_CLASSES=(
|
||||||
# '*prod*' PROD
|
# '*prod*' PROD
|
||||||
# '*test*' TEST
|
# '*test*' TEST
|
||||||
# '*' DEFAULT)
|
# '*' DEFAULT)
|
||||||
#
|
#
|
||||||
# If your current AWS profile is "company_test", its class is TEST
|
# If your current terraform workspace is "project_test", its class is TEST because "project_test"
|
||||||
# because "company_test" doesn't match the pattern '*prod*' but does match '*test*'.
|
# doesn't match the pattern '*prod*' but does match '*test*'.
|
||||||
#
|
#
|
||||||
# You can define different colors, icons and content expansions for different classes:
|
# You can define different colors, icons and content expansions for different classes:
|
||||||
#
|
#
|
||||||
# typeset -g POWERLEVEL9K_AWS_TEST_FOREGROUND=28
|
# typeset -g POWERLEVEL9K_TERRAFORM_TEST_FOREGROUND=28
|
||||||
# typeset -g POWERLEVEL9K_AWS_TEST_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
# typeset -g POWERLEVEL9K_TERRAFORM_TEST_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
||||||
# typeset -g POWERLEVEL9K_AWS_TEST_CONTENT_EXPANSION='> ${P9K_CONTENT} <'
|
# typeset -g POWERLEVEL9K_TERRAFORM_TEST_CONTENT_EXPANSION='> ${P9K_CONTENT} <'
|
||||||
typeset -g POWERLEVEL9K_AWS_CLASSES=(
|
typeset -g POWERLEVEL9K_TERRAFORM_CLASSES=(
|
||||||
# '*prod*' PROD # These values are examples that are unlikely
|
# '*prod*' PROD # These values are examples that are unlikely
|
||||||
# '*test*' TEST # to match your needs. Customize them as needed.
|
# '*test*' TEST # to match your needs. Customize them as needed.
|
||||||
'*' DEFAULT)
|
'*' DEFAULT)
|
||||||
# typeset -g POWERLEVEL9K_AWS_DEFAULT_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
typeset -g POWERLEVEL9K_TERRAFORM_DEFAULT_FOREGROUND=38
|
||||||
|
# typeset -g POWERLEVEL9K_TERRAFORM_DEFAULT_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
||||||
#[ aws_eb_env: aws elastic beanstalk environment (https://aws.amazon.com/elasticbeanstalk/) ]#
|
|
||||||
# AWS Elastic Beanstalk environment color.
|
|
||||||
typeset -g POWERLEVEL9K_AWS_EB_ENV_FOREGROUND=70
|
|
||||||
# Custom icon.
|
|
||||||
typeset -g POWERLEVEL9K_AWS_EB_ENV_VISUAL_IDENTIFIER_EXPANSION='eb'
|
|
||||||
|
|
||||||
##########[ azure: azure account name (https://docs.microsoft.com/en-us/cli/azure) ]##########
|
|
||||||
# Azure account name color.
|
|
||||||
typeset -g POWERLEVEL9K_AZURE_FOREGROUND=32
|
|
||||||
# Custom icon.
|
|
||||||
typeset -g POWERLEVEL9K_AZURE_VISUAL_IDENTIFIER_EXPANSION='az'
|
|
||||||
|
|
||||||
#############[ kubecontext: current kubernetes context (https://kubernetes.io/) ]#############
|
#############[ kubecontext: current kubernetes context (https://kubernetes.io/) ]#############
|
||||||
|
# Show kubecontext only when the the command you are typing invokes one of these tools.
|
||||||
|
# Tip: Remove the next line to always show kubecontext.
|
||||||
|
typeset -g POWERLEVEL9K_KUBECONTEXT_SHOW_ON_COMMAND='kubectl|helm|kubens|kubectx|oc'
|
||||||
|
|
||||||
# Kubernetes context classes for the purpose of using different colors, icons and expansions with
|
# Kubernetes context classes for the purpose of using different colors, icons and expansions with
|
||||||
# different contexts.
|
# different contexts.
|
||||||
#
|
#
|
||||||
|
@ -775,6 +922,8 @@
|
||||||
# - P9K_KUBECONTEXT_NAMESPACE The current context's namespace. Corresponds to column NAMESPACE
|
# - P9K_KUBECONTEXT_NAMESPACE The current context's namespace. Corresponds to column NAMESPACE
|
||||||
# in the output of `kubectl config get-contexts`. If there is no
|
# in the output of `kubectl config get-contexts`. If there is no
|
||||||
# namespace, the parameter is set to "default".
|
# namespace, the parameter is set to "default".
|
||||||
|
# - P9K_KUBECONTEXT_USER The current context's user. Corresponds to column AUTHINFO in the
|
||||||
|
# output of `kubectl config get-contexts`.
|
||||||
#
|
#
|
||||||
# If the context points to Google Kubernetes Engine (GKE) or Elastic Kubernetes Service (EKS),
|
# If the context points to Google Kubernetes Engine (GKE) or Elastic Kubernetes Service (EKS),
|
||||||
# the following extra parameters are available:
|
# the following extra parameters are available:
|
||||||
|
@ -805,7 +954,130 @@
|
||||||
POWERLEVEL9K_KUBECONTEXT_DEFAULT_CONTENT_EXPANSION+='${${:-/$P9K_KUBECONTEXT_NAMESPACE}:#/default}'
|
POWERLEVEL9K_KUBECONTEXT_DEFAULT_CONTENT_EXPANSION+='${${:-/$P9K_KUBECONTEXT_NAMESPACE}:#/default}'
|
||||||
|
|
||||||
# Custom prefix.
|
# Custom prefix.
|
||||||
typeset -g POWERLEVEL9K_KUBECONTEXT_PREFIX='%246Fat '
|
typeset -g POWERLEVEL9K_KUBECONTEXT_PREFIX='%248Fat '
|
||||||
|
|
||||||
|
#[ aws: aws profile (https://docs.aws.amazon.com/cli/latest/userguide/cli-configure-profiles.html) ]#
|
||||||
|
# Show aws only when the the command you are typing invokes one of these tools.
|
||||||
|
# Tip: Remove the next line to always show aws.
|
||||||
|
typeset -g POWERLEVEL9K_AWS_SHOW_ON_COMMAND='aws|awless|terraform|pulumi'
|
||||||
|
|
||||||
|
# POWERLEVEL9K_AWS_CLASSES is an array with even number of elements. The first element
|
||||||
|
# in each pair defines a pattern against which the current AWS profile gets matched.
|
||||||
|
# More specifically, it's P9K_CONTENT prior to the application of context expansion (see below)
|
||||||
|
# that gets matched. If you unset all POWERLEVEL9K_AWS_*CONTENT_EXPANSION parameters,
|
||||||
|
# you'll see this value in your prompt. The second element of each pair in
|
||||||
|
# POWERLEVEL9K_AWS_CLASSES defines the profile class. Patterns are tried in order. The
|
||||||
|
# first match wins.
|
||||||
|
#
|
||||||
|
# For example, given these settings:
|
||||||
|
#
|
||||||
|
# typeset -g POWERLEVEL9K_AWS_CLASSES=(
|
||||||
|
# '*prod*' PROD
|
||||||
|
# '*test*' TEST
|
||||||
|
# '*' DEFAULT)
|
||||||
|
#
|
||||||
|
# If your current AWS profile is "company_test", its class is TEST
|
||||||
|
# because "company_test" doesn't match the pattern '*prod*' but does match '*test*'.
|
||||||
|
#
|
||||||
|
# You can define different colors, icons and content expansions for different classes:
|
||||||
|
#
|
||||||
|
# typeset -g POWERLEVEL9K_AWS_TEST_FOREGROUND=28
|
||||||
|
# typeset -g POWERLEVEL9K_AWS_TEST_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
||||||
|
# typeset -g POWERLEVEL9K_AWS_TEST_CONTENT_EXPANSION='> ${P9K_CONTENT} <'
|
||||||
|
typeset -g POWERLEVEL9K_AWS_CLASSES=(
|
||||||
|
# '*prod*' PROD # These values are examples that are unlikely
|
||||||
|
# '*test*' TEST # to match your needs. Customize them as needed.
|
||||||
|
'*' DEFAULT)
|
||||||
|
typeset -g POWERLEVEL9K_AWS_DEFAULT_FOREGROUND=208
|
||||||
|
# typeset -g POWERLEVEL9K_AWS_DEFAULT_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
||||||
|
|
||||||
|
#[ aws_eb_env: aws elastic beanstalk environment (https://aws.amazon.com/elasticbeanstalk/) ]#
|
||||||
|
# AWS Elastic Beanstalk environment color.
|
||||||
|
typeset -g POWERLEVEL9K_AWS_EB_ENV_FOREGROUND=70
|
||||||
|
# Custom icon.
|
||||||
|
typeset -g POWERLEVEL9K_AWS_EB_ENV_VISUAL_IDENTIFIER_EXPANSION='eb'
|
||||||
|
|
||||||
|
##########[ azure: azure account name (https://docs.microsoft.com/en-us/cli/azure) ]##########
|
||||||
|
# Show azure only when the the command you are typing invokes one of these tools.
|
||||||
|
# Tip: Remove the next line to always show azure.
|
||||||
|
typeset -g POWERLEVEL9K_AZURE_SHOW_ON_COMMAND='az|terraform|pulumi'
|
||||||
|
# Azure account name color.
|
||||||
|
typeset -g POWERLEVEL9K_AZURE_FOREGROUND=32
|
||||||
|
# Custom icon.
|
||||||
|
typeset -g POWERLEVEL9K_AZURE_VISUAL_IDENTIFIER_EXPANSION='az'
|
||||||
|
|
||||||
|
##########[ gcloud: google cloud account and project (https://cloud.google.com/) ]###########
|
||||||
|
# Show gcloud only when the the command you are typing invokes one of these tools.
|
||||||
|
# Tip: Remove the next line to always show gcloud.
|
||||||
|
typeset -g POWERLEVEL9K_GCLOUD_SHOW_ON_COMMAND='gcloud|gcs'
|
||||||
|
# Google cloud color.
|
||||||
|
typeset -g POWERLEVEL9K_GCLOUD_FOREGROUND=32
|
||||||
|
|
||||||
|
# Google cloud format. Change the value of POWERLEVEL9K_GCLOUD_CONTENT_EXPANSION if the default
|
||||||
|
# is too verbose or not informative enough.
|
||||||
|
#
|
||||||
|
# P9K_GCLOUD_ACCOUNT: the output of `gcloud config get-value account`
|
||||||
|
# P9K_GCLOUD_PROJECT: the output of `gcloud config get-value project`
|
||||||
|
# ${VARIABLE//\%/%%}: ${VARIABLE} with all occurences of '%' replaced with '%%'.
|
||||||
|
#
|
||||||
|
typeset -g POWERLEVEL9K_GCLOUD_CONTENT_EXPANSION='${P9K_GCLOUD_PROJECT//\%/%%}'
|
||||||
|
|
||||||
|
# Custom icon.
|
||||||
|
# typeset -g POWERLEVEL9K_GCLOUD_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
||||||
|
|
||||||
|
#[ google_app_cred: google application credentials (https://cloud.google.com/docs/authentication/production) ]#
|
||||||
|
# Show google_app_cred only when the the command you are typing invokes one of these tools.
|
||||||
|
# Tip: Remove the next line to always show google_app_cred.
|
||||||
|
typeset -g POWERLEVEL9K_GOOGLE_APP_CRED_SHOW_ON_COMMAND='terraform|pulumi'
|
||||||
|
|
||||||
|
# Google application credentials classes for the purpose of using different colors, icons and
|
||||||
|
# expansions with different credentials.
|
||||||
|
#
|
||||||
|
# POWERLEVEL9K_GOOGLE_APP_CRED_CLASSES is an array with even number of elements. The first
|
||||||
|
# element in each pair defines a pattern against which the current kubernetes context gets
|
||||||
|
# matched. More specifically, it's P9K_CONTENT prior to the application of context expansion
|
||||||
|
# (see below) that gets matched. If you unset all POWERLEVEL9K_GOOGLE_APP_CRED_*CONTENT_EXPANSION
|
||||||
|
# parameters, you'll see this value in your prompt. The second element of each pair in
|
||||||
|
# POWERLEVEL9K_GOOGLE_APP_CRED_CLASSES defines the context class. Patterns are tried in order.
|
||||||
|
# The first match wins.
|
||||||
|
#
|
||||||
|
# For example, given these settings:
|
||||||
|
#
|
||||||
|
# typeset -g POWERLEVEL9K_GOOGLE_APP_CRED_CLASSES=(
|
||||||
|
# '*:*prod*:*' PROD
|
||||||
|
# '*:*test*:*' TEST
|
||||||
|
# '*' DEFAULT)
|
||||||
|
#
|
||||||
|
# If your current Google application credentials is "service_account deathray-testing x@y.com",
|
||||||
|
# its class is TEST because it doesn't match the pattern '* *prod* *' but does match '* *test* *'.
|
||||||
|
#
|
||||||
|
# You can define different colors, icons and content expansions for different classes:
|
||||||
|
#
|
||||||
|
# typeset -g POWERLEVEL9K_GOOGLE_APP_CRED_TEST_FOREGROUND=28
|
||||||
|
# typeset -g POWERLEVEL9K_GOOGLE_APP_CRED_TEST_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
||||||
|
# typeset -g POWERLEVEL9K_GOOGLE_APP_CRED_TEST_CONTENT_EXPANSION='$P9K_GOOGLE_APP_CRED_PROJECT_ID'
|
||||||
|
typeset -g POWERLEVEL9K_GOOGLE_APP_CRED_CLASSES=(
|
||||||
|
# '*:*prod*:*' PROD # These values are examples that are unlikely
|
||||||
|
# '*:*test*:*' TEST # to match your needs. Customize them as needed.
|
||||||
|
'*' DEFAULT)
|
||||||
|
typeset -g POWERLEVEL9K_GOOGLE_APP_CRED_DEFAULT_FOREGROUND=32
|
||||||
|
# typeset -g POWERLEVEL9K_GOOGLE_APP_CRED_DEFAULT_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
||||||
|
|
||||||
|
# Use POWERLEVEL9K_GOOGLE_APP_CRED_CONTENT_EXPANSION to specify the content displayed by
|
||||||
|
# google_app_cred segment. Parameter expansions are very flexible and fast, too. See reference:
|
||||||
|
# http://zsh.sourceforge.net/Doc/Release/Expansion.html#Parameter-Expansion.
|
||||||
|
#
|
||||||
|
# You can use the following parameters in the expansion. Each of them corresponds to one of the
|
||||||
|
# fields in the JSON file pointed to by GOOGLE_APPLICATION_CREDENTIALS.
|
||||||
|
#
|
||||||
|
# Parameter | JSON key file field
|
||||||
|
# ---------------------------------+---------------
|
||||||
|
# P9K_GOOGLE_APP_CRED_TYPE | type
|
||||||
|
# P9K_GOOGLE_APP_CRED_PROJECT_ID | project_id
|
||||||
|
# P9K_GOOGLE_APP_CRED_CLIENT_EMAIL | client_email
|
||||||
|
#
|
||||||
|
# Note: ${VARIABLE//\%/%%} expands to ${VARIABLE} with all occurences of '%' replaced by '%%'.
|
||||||
|
typeset -g POWERLEVEL9K_GOOGLE_APP_CRED_DEFAULT_CONTENT_EXPANSION='${P9K_GOOGLE_APP_CRED_PROJECT_ID//\%/%%}'
|
||||||
|
|
||||||
###############################[ public_ip: public IP address ]###############################
|
###############################[ public_ip: public IP address ]###############################
|
||||||
# Public IP color.
|
# Public IP color.
|
||||||
|
@ -817,12 +1089,13 @@
|
||||||
# VPN IP color.
|
# VPN IP color.
|
||||||
typeset -g POWERLEVEL9K_VPN_IP_FOREGROUND=81
|
typeset -g POWERLEVEL9K_VPN_IP_FOREGROUND=81
|
||||||
# When on VPN, show just an icon without the IP address.
|
# When on VPN, show just an icon without the IP address.
|
||||||
|
# Tip: To display the private IP address when on VPN, remove the next line.
|
||||||
typeset -g POWERLEVEL9K_VPN_IP_CONTENT_EXPANSION=
|
typeset -g POWERLEVEL9K_VPN_IP_CONTENT_EXPANSION=
|
||||||
# Regular expression for the VPN network interface. Run ifconfig while on VPN to see the
|
# Regular expression for the VPN network interface. Run ifconfig while on VPN to see the
|
||||||
# name of the interface.
|
# name of the interface.
|
||||||
typeset -g POWERLEVEL9K_VPN_IP_INTERFACE='(wg|(.*tun))[0-9]*'
|
typeset -g POWERLEVEL9K_VPN_IP_INTERFACE='(wg|(.*tun))[0-9]*'
|
||||||
# Icon to show when on VPN.
|
# Custom icon.
|
||||||
typeset -g POWERLEVEL9K_VPN_IP_VISUAL_IDENTIFIER_EXPANSION='${P9K_VISUAL_IDENTIFIER}'
|
# typeset -g POWERLEVEL9K_VPN_IP_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
||||||
|
|
||||||
#########################[ proxy: system-wide http/https/ftp proxy ]##########################
|
#########################[ proxy: system-wide http/https/ftp proxy ]##########################
|
||||||
# Proxy color.
|
# Proxy color.
|
||||||
|
@ -855,7 +1128,7 @@
|
||||||
# Custom icon.
|
# Custom icon.
|
||||||
typeset -g POWERLEVEL9K_TIME_VISUAL_IDENTIFIER_EXPANSION=
|
typeset -g POWERLEVEL9K_TIME_VISUAL_IDENTIFIER_EXPANSION=
|
||||||
# Custom prefix.
|
# Custom prefix.
|
||||||
typeset -g POWERLEVEL9K_TIME_PREFIX='%246Fat '
|
typeset -g POWERLEVEL9K_TIME_PREFIX='%248Fat '
|
||||||
|
|
||||||
# Example of a user-defined prompt segment. Function prompt_example will be called on every
|
# Example of a user-defined prompt segment. Function prompt_example will be called on every
|
||||||
# prompt if `example` prompt segment is added to POWERLEVEL9K_LEFT_PROMPT_ELEMENTS or
|
# prompt if `example` prompt segment is added to POWERLEVEL9K_LEFT_PROMPT_ELEMENTS or
|
||||||
|
@ -896,7 +1169,7 @@
|
||||||
# - always: Trim down prompt when accepting a command line.
|
# - always: Trim down prompt when accepting a command line.
|
||||||
# - same-dir: Trim down prompt when accepting a command line unless this is the first command
|
# - same-dir: Trim down prompt when accepting a command line unless this is the first command
|
||||||
# typed after changing current working directory.
|
# typed after changing current working directory.
|
||||||
typeset -g POWERLEVEL9K_TRANSIENT_PROMPT=off
|
typeset -g POWERLEVEL9K_TRANSIENT_PROMPT=always
|
||||||
|
|
||||||
# Instant prompt mode.
|
# Instant prompt mode.
|
||||||
#
|
#
|
||||||
|
@ -908,13 +1181,17 @@
|
||||||
# - verbose: Enable instant prompt and print a warning when detecting console output during
|
# - verbose: Enable instant prompt and print a warning when detecting console output during
|
||||||
# zsh initialization. Choose this if you've never tried instant prompt, haven't
|
# zsh initialization. Choose this if you've never tried instant prompt, haven't
|
||||||
# seen the warning, or if you are unsure what this all means.
|
# seen the warning, or if you are unsure what this all means.
|
||||||
typeset -g POWERLEVEL9K_INSTANT_PROMPT=verbose
|
typeset -g POWERLEVEL9K_INSTANT_PROMPT=off
|
||||||
|
|
||||||
# Hot reload allows you to change POWERLEVEL9K options after Powerlevel10k has been initialized.
|
# Hot reload allows you to change POWERLEVEL9K options after Powerlevel10k has been initialized.
|
||||||
# For example, you can type POWERLEVEL9K_BACKGROUND=red and see your prompt turn red. Hot reload
|
# For example, you can type POWERLEVEL9K_BACKGROUND=red and see your prompt turn red. Hot reload
|
||||||
# can slow down prompt by 1-2 milliseconds, so it's better to keep it turned off unless you
|
# can slow down prompt by 1-2 milliseconds, so it's better to keep it turned off unless you
|
||||||
# really need it.
|
# really need it.
|
||||||
typeset -g POWERLEVEL9K_DISABLE_HOT_RELOAD=true
|
typeset -g POWERLEVEL9K_DISABLE_HOT_RELOAD=true
|
||||||
|
|
||||||
|
# If p10k is already loaded, reload configuration.
|
||||||
|
# This works even with POWERLEVEL9K_DISABLE_HOT_RELOAD=true.
|
||||||
|
(( ! $+functions[p10k] )) || p10k reload
|
||||||
}
|
}
|
||||||
|
|
||||||
(( ${#p10k_config_opts} )) && setopt ${p10k_config_opts[@]}
|
(( ${#p10k_config_opts} )) && setopt ${p10k_config_opts[@]}
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
echo "initialize submodules and clone prezto"
|
echo "initialize submodules and clone prezto"
|
||||||
git clone --recursive -j 4 https://github.com/steveokard/prezto.git "$HOME/stevset/prezto/.zprezto"
|
git clone --recursive -j 4 https://github.com/steveokard/prezto.git "$HOME/stevset/prezto/.zprezto"
|
||||||
#fix submodules once and for all
|
#fix submodules once and for all
|
||||||
cd $HOME/stevset/prezto/.zprezto && git submodule update -j 4 --init --remote
|
#cd $HOME/stevset/prezto/.zprezto && git submodule update -j 4 --init --remote
|
||||||
#&& git submodule update -j 4
|
#&& git submodule update -j 4
|
||||||
#cd ~/.zprezto/modules/prompt/external/powerlevel10k && git checkout master && git pull
|
#cd ~/.zprezto/modules/prompt/external/powerlevel10k && git checkout master && git pull
|
||||||
|
|
||||||
|
@ -27,5 +27,5 @@ echo "....configuring theme"
|
||||||
#cd && curl -fsSLO https://raw.githubusercontent.com/romkatv/dotfiles-public/master/.purepower
|
#cd && curl -fsSLO https://raw.githubusercontent.com/romkatv/dotfiles-public/master/.purepower
|
||||||
ln -s $HOME/stevset/.p10k.zsh $HOME/
|
ln -s $HOME/stevset/.p10k.zsh $HOME/
|
||||||
|
|
||||||
rm $HOME/.zprezto/modules/prompt/functions/prompt_powerlevel10k_setup
|
#rm $HOME/.zprezto/modules/prompt/functions/prompt_powerlevel10k_setup
|
||||||
ln -s $HOME/.zprezto/modules/prompt/external/powerlevel10k/prompt_powerlevel10k_setup $HOME/.zprezto/modules/prompt/functions/prompt_powerlevel10k_setup
|
#ln -s $HOME/.zprezto/modules/prompt/external/powerlevel10k/prompt_powerlevel10k_setup $HOME/.zprezto/modules/prompt/functions/prompt_powerlevel10k_setup
|
||||||
|
|
|
@ -53,6 +53,3 @@ set -g display-panes-time 800
|
||||||
set -g display-time 1000
|
set -g display-time 1000
|
||||||
set -g status-interval 10
|
set -g status-interval 10
|
||||||
|
|
||||||
# Ensure terminal starts with its own colour scheme (helps Vim/Neovim themes to not break)
|
|
||||||
set-option -g default-terminal "screen-256color"
|
|
||||||
set -g default-terminal "screen-256color"
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue