p10k update
This commit is contained in:
parent
e6ecd98c6d
commit
b125370c08
381
zsh/p10k.zsh
381
zsh/p10k.zsh
@ -3,7 +3,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%6)):#3}:+$'\n'}; done
|
||||||
|
|
||||||
# Temporarily change options.
|
# Temporarily change options.
|
||||||
'builtin' 'local' '-a' 'p10k_config_opts'
|
'builtin' 'local' '-a' 'p10k_config_opts'
|
||||||
@ -13,20 +13,15 @@
|
|||||||
'builtin' 'setopt' 'no_aliases' 'no_sh_glob' 'brace_expand'
|
'builtin' 'setopt' 'no_aliases' 'no_sh_glob' 'brace_expand'
|
||||||
|
|
||||||
() {
|
() {
|
||||||
emulate -L zsh
|
emulate -L zsh -o extended_glob
|
||||||
setopt no_unset extended_glob
|
|
||||||
|
|
||||||
# Unset all configuration options. This allows you to apply configiguration changes without
|
# Unset all configuration options. This allows you to apply configuration 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_*|DEFAULT_USER)~POWERLEVEL9K_GITSTATUS_DIR'
|
||||||
|
|
||||||
|
# Zsh >= 5.1 is required.
|
||||||
autoload -Uz is-at-least && is-at-least 5.1 || return
|
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 ]=========================
|
||||||
@ -89,6 +84,12 @@
|
|||||||
# example # example user-defined segment (see prompt_example function below)
|
# example # example user-defined segment (see prompt_example function below)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
# Defines character set used by powerlevel10k. It's best to let `p10k configure` set it for you.
|
||||||
|
typeset -g POWERLEVEL9K_MODE=nerdfont-complete
|
||||||
|
# When set to `moderate`, some icons will have an extra space after them. This is meant to avoid
|
||||||
|
# icon overlap when using non-monospace fonts. When set to `none`, spaces are not added.
|
||||||
|
typeset -g POWERLEVEL9K_ICON_PADDING=none
|
||||||
|
|
||||||
# Basic style options that define the overall look of your prompt. You probably don't want to
|
# Basic style options that define the overall look of your prompt. You probably don't want to
|
||||||
# change them.
|
# change them.
|
||||||
typeset -g POWERLEVEL9K_BACKGROUND= # transparent background
|
typeset -g POWERLEVEL9K_BACKGROUND= # transparent background
|
||||||
@ -96,52 +97,6 @@
|
|||||||
typeset -g POWERLEVEL9K_{LEFT,RIGHT}_SUBSEGMENT_SEPARATOR=' ' # separate segments with a space
|
typeset -g POWERLEVEL9K_{LEFT,RIGHT}_SUBSEGMENT_SEPARATOR=' ' # separate segments with a space
|
||||||
typeset -g POWERLEVEL9K_{LEFT,RIGHT}_SEGMENT_SEPARATOR= # no end-of-line symbol
|
typeset -g POWERLEVEL9K_{LEFT,RIGHT}_SEGMENT_SEPARATOR= # no end-of-line symbol
|
||||||
|
|
||||||
# To enable default icons for all segments, don't define POWERLEVEL9K_VISUAL_IDENTIFIER_EXPANSION
|
|
||||||
# or set it to '${P9K_VISUAL_IDENTIFIER}'.
|
|
||||||
#
|
|
||||||
# To remove spaces from all default icons, set POWERLEVEL9K_VISUAL_IDENTIFIER_EXPANSION
|
|
||||||
# to '${P9K_VISUAL_IDENTIFIER// }'. You'll know that you you need this option if you see extra
|
|
||||||
# spaces after icons.
|
|
||||||
#
|
|
||||||
# To enable default icons for one segment (e.g., dir), set
|
|
||||||
# POWERLEVEL9K_DIR_VISUAL_IDENTIFIER_EXPANSION='${P9K_VISUAL_IDENTIFIER}'.
|
|
||||||
#
|
|
||||||
# To assign a specific icon to one segment (e.g., dir), set
|
|
||||||
# POWERLEVEL9K_DIR_VISUAL_IDENTIFIER_EXPANSION='⭐'.
|
|
||||||
#
|
|
||||||
# To assign a specific icon to a segment in a given state (e.g., dir in state NOT_WRITABLE),
|
|
||||||
# set POWERLEVEL9K_DIR_NOT_WRITABLE_VISUAL_IDENTIFIER_EXPANSION='⭐'.
|
|
||||||
#
|
|
||||||
# Note: You can use $'\u2B50' instead of '⭐'. It's especially convenient when specifying
|
|
||||||
# icons that your text editor cannot render. Don't forget to put $ and use single quotes when
|
|
||||||
# defining icons via Unicode codepoints.
|
|
||||||
#
|
|
||||||
# Note: Many default icons cannot be displayed with system fonts. You'll need to install a
|
|
||||||
# capable font to use them. See POWERLEVEL9K_MODE below.
|
|
||||||
typeset -g POWERLEVEL9K_VISUAL_IDENTIFIER_EXPANSION='${P9K_VISUAL_IDENTIFIER// }'
|
|
||||||
|
|
||||||
# This option makes a difference only when default icons are enabled for all or some prompt
|
|
||||||
# segments (see POWERLEVEL9K_VISUAL_IDENTIFIER_EXPANSION above). LOCK_ICON can be printed as
|
|
||||||
# $'\uE0A2', $'\uE138' or $'\uF023' depending on POWERLEVEL9K_MODE. The correct value of this
|
|
||||||
# parameter depends on the provider of the font your terminal is using.
|
|
||||||
#
|
|
||||||
# Font Provider | POWERLEVEL9K_MODE
|
|
||||||
# ---------------------------------+-------------------
|
|
||||||
# Powerline | powerline
|
|
||||||
# Font Awesome | awesome-fontconfig
|
|
||||||
# Adobe Source Code Pro | awesome-fontconfig
|
|
||||||
# Source Code Pro | awesome-fontconfig
|
|
||||||
# Awesome-Terminal Fonts (regular) | awesome-fontconfig
|
|
||||||
# Awesome-Terminal Fonts (patched) | awesome-patched
|
|
||||||
# Nerd Fonts | nerdfont-complete
|
|
||||||
# Other | compatible
|
|
||||||
#
|
|
||||||
# If this looks overwhelming, either stick with a preinstalled system font and set
|
|
||||||
# POWERLEVEL9K_MODE=compatible, or install the recommended Powerlevel10k font from
|
|
||||||
# https://github.com/romkatv/powerlevel10k/#recommended-meslo-nerd-font-patched-for-powerlevel10k
|
|
||||||
# and set POWERLEVEL9K_MODE=nerdfont-complete.
|
|
||||||
typeset -g POWERLEVEL9K_MODE=nerdfont-complete
|
|
||||||
|
|
||||||
# When set to true, icons appear before content on both sides of the prompt. When set
|
# When set to true, icons appear before content on both sides of the prompt. When set
|
||||||
# to false, icons go after content. If empty or not set, icons go before content in the left
|
# to false, icons go after content. If empty or not set, icons go before content in the left
|
||||||
# prompt and after content in the right prompt.
|
# prompt and after content in the right prompt.
|
||||||
@ -203,7 +158,7 @@
|
|||||||
# OS identifier color.
|
# OS identifier color.
|
||||||
typeset -g POWERLEVEL9K_OS_ICON_FOREGROUND=
|
typeset -g POWERLEVEL9K_OS_ICON_FOREGROUND=
|
||||||
# Make the icon bold.
|
# Make the icon bold.
|
||||||
typeset -g POWERLEVEL9K_OS_ICON_CONTENT_EXPANSION='%B${P9K_CONTENT}'
|
typeset -g POWERLEVEL9K_OS_ICON_CONTENT_EXPANSION='${P9K_CONTENT}'
|
||||||
|
|
||||||
################################[ prompt_char: prompt symbol ]################################
|
################################[ prompt_char: prompt symbol ]################################
|
||||||
# Green prompt symbol if the last command succeeded.
|
# Green prompt symbol if the last command succeeded.
|
||||||
@ -215,7 +170,7 @@
|
|||||||
# Prompt symbol in command vi mode.
|
# Prompt symbol in command vi mode.
|
||||||
typeset -g POWERLEVEL9K_PROMPT_CHAR_{OK,ERROR}_VICMD_CONTENT_EXPANSION='❮'
|
typeset -g POWERLEVEL9K_PROMPT_CHAR_{OK,ERROR}_VICMD_CONTENT_EXPANSION='❮'
|
||||||
# Prompt symbol in visual vi mode.
|
# Prompt symbol in visual vi mode.
|
||||||
typeset -g POWERLEVEL9K_PROMPT_CHAR_{OK,ERROR}_VIVIS_CONTENT_EXPANSION='Ⅴ'
|
typeset -g POWERLEVEL9K_PROMPT_CHAR_{OK,ERROR}_VIVIS_CONTENT_EXPANSION='V'
|
||||||
# Prompt symbol in overwrite vi mode.
|
# Prompt symbol in overwrite vi mode.
|
||||||
typeset -g POWERLEVEL9K_PROMPT_CHAR_{OK,ERROR}_VIOWR_CONTENT_EXPANSION='▶'
|
typeset -g POWERLEVEL9K_PROMPT_CHAR_{OK,ERROR}_VIOWR_CONTENT_EXPANSION='▶'
|
||||||
typeset -g POWERLEVEL9K_PROMPT_CHAR_OVERWRITE_STATE=true
|
typeset -g POWERLEVEL9K_PROMPT_CHAR_OVERWRITE_STATE=true
|
||||||
@ -230,7 +185,6 @@
|
|||||||
# If directory is too long, shorten some of its segments to the shortest possible unique
|
# If directory is too long, shorten some of its segments to the shortest possible unique
|
||||||
# prefix. The shortened directory can be tab-completed to the original.
|
# prefix. The shortened directory can be tab-completed to the original.
|
||||||
typeset -g POWERLEVEL9K_SHORTEN_STRATEGY=truncate_to_unique
|
typeset -g POWERLEVEL9K_SHORTEN_STRATEGY=truncate_to_unique
|
||||||
typeset -g POWERLEVEL9K_DIR_TRUNCATE_BEFORE_MARKER=true
|
|
||||||
# Replace removed segment suffixes with this symbol.
|
# Replace removed segment suffixes with this symbol.
|
||||||
typeset -g POWERLEVEL9K_SHORTEN_DELIMITER=
|
typeset -g POWERLEVEL9K_SHORTEN_DELIMITER=
|
||||||
# Color of the shortened directory segments.
|
# Color of the shortened directory segments.
|
||||||
@ -245,11 +199,17 @@
|
|||||||
.git
|
.git
|
||||||
)
|
)
|
||||||
typeset -g POWERLEVEL9K_SHORTEN_FOLDER_MARKER="(${(j:|:)anchor_files})"
|
typeset -g POWERLEVEL9K_SHORTEN_FOLDER_MARKER="(${(j:|:)anchor_files})"
|
||||||
# If set to true, remove everything before the last (deepest) subdirectory that contains files
|
# If set to "first" ("last"), remove everything before the first (last) subdirectory that contains
|
||||||
# matching $POWERLEVEL9K_SHORTEN_FOLDER_MARKER. For example, when the current directory is
|
# files matching $POWERLEVEL9K_SHORTEN_FOLDER_MARKER. For example, when the current directory is
|
||||||
# /foo/bar/git_repo/baz, prompt will display git_repo/baz. This assumes that /foo/bar/git_repo
|
# /foo/bar/git_repo/nested_git_repo/baz, prompt will display git_repo/nested_git_repo/baz (first)
|
||||||
# contains a marker (.git) and other directories don't.
|
# or nested_git_repo/baz (last). This assumes that git_repo and nested_git_repo contain markers
|
||||||
typeset -g POWERLEVEL9K_DIR_TRUNCATE_BEFORE_MARKER=true
|
# and other directories don't.
|
||||||
|
#
|
||||||
|
# Optionally, "first" and "last" can be followed by ":<offset>" where <offset> is an integer.
|
||||||
|
# This moves the truncation point to the right (positive offset) or to the left (negative offset)
|
||||||
|
# relative to the marker. Plain "first" and "last" are equivalent to "first:0" and "last:0"
|
||||||
|
# respectively.
|
||||||
|
typeset -g POWERLEVEL9K_DIR_TRUNCATE_BEFORE_MARKER=false
|
||||||
# Don't shorten this many last directory segments. They are anchors.
|
# Don't shorten this many last directory segments. They are anchors.
|
||||||
typeset -g POWERLEVEL9K_SHORTEN_DIR_LENGTH=1
|
typeset -g POWERLEVEL9K_SHORTEN_DIR_LENGTH=1
|
||||||
# Shorten directory if it's longer than this even if there is space for it. The value can
|
# Shorten directory if it's longer than this even if there is space for it. The value can
|
||||||
@ -270,51 +230,61 @@
|
|||||||
# the full directory that was used in previous commands.
|
# the full directory that was used in previous commands.
|
||||||
typeset -g POWERLEVEL9K_DIR_HYPERLINK=false
|
typeset -g POWERLEVEL9K_DIR_HYPERLINK=false
|
||||||
|
|
||||||
# Enable special styling for non-writable directories.
|
# Enable special styling for non-writable directories. See POWERLEVEL9K_LOCK_ICON and
|
||||||
typeset -g POWERLEVEL9K_DIR_SHOW_WRITABLE=true
|
# POWERLEVEL9K_DIR_CLASSES below.
|
||||||
# Show this icon when the current directory is not writable. POWERLEVEL9K_DIR_SHOW_WRITABLE
|
typeset -g POWERLEVEL9K_DIR_SHOW_WRITABLE=v2
|
||||||
# above must be set to true for this parameter to have effect.
|
|
||||||
# typeset -g POWERLEVEL9K_DIR_NOT_WRITABLE_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
|
||||||
|
|
||||||
# Custom prefix.
|
# The default icon shown next to non-writable directories when POWERLEVEL9K_DIR_SHOW_WRITABLE is
|
||||||
# typeset -g POWERLEVEL9K_DIR_PREFIX='%fin '
|
# set to v2.
|
||||||
|
# typeset -g POWERLEVEL9K_LOCK_ICON='⭐'
|
||||||
|
|
||||||
# POWERLEVEL9K_DIR_CLASSES allows you to specify custom icons for different directories.
|
# POWERLEVEL9K_DIR_CLASSES allows you to specify custom icons and colors for different
|
||||||
# It must be an array with 3 * N elements. Each triplet consists of:
|
# directories. It must be an array with 3 * N elements. Each triplet consists of:
|
||||||
#
|
#
|
||||||
# 1. A pattern against which the current directory is matched. Matching is done with
|
# 1. A pattern against which the current directory is matched. Matching is done with
|
||||||
# extended_glob option enabled.
|
# extended_glob option enabled.
|
||||||
# 2. Directory class for the purpose of styling.
|
# 2. Directory class for the purpose of styling.
|
||||||
# 3. Icon.
|
# 3. An empty string.
|
||||||
#
|
#
|
||||||
# Triplets are tried in order. The first triplet whose pattern matches $PWD wins. If there
|
# Triplets are tried in order. The first triplet whose pattern matches $PWD wins. If there
|
||||||
# are no matches, the directory will have no icon.
|
|
||||||
#
|
#
|
||||||
# Example:
|
# If POWERLEVEL9K_DIR_SHOW_WRITABLE is set to v2 and the current directory is not writable,
|
||||||
|
# its class gets suffix _NOT_WRITABLE.
|
||||||
|
#
|
||||||
|
# For example, given these settings:
|
||||||
#
|
#
|
||||||
# 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:
|
# Whenever the current directory is ~/work or a subdirectory of ~/work, it gets styled with class
|
||||||
|
# WORK or WORK_NOT_WRITABLE.
|
||||||
#
|
#
|
||||||
# (╯°□°)╯︵ ┻━┻ ~/work/projects/important/urgent
|
# Simply assigning classes to directories doesn't have any visible effects. It merely gives you an
|
||||||
#
|
# option to define custom colors and icons for different directory classes.
|
||||||
# Or like this:
|
|
||||||
#
|
|
||||||
# ⌂ ~/best/powerlevel10k
|
|
||||||
#
|
|
||||||
# You can also set different colors for directories of different classes. Remember to override
|
|
||||||
# FOREGROUND, SHORTENED_FOREGROUND and ANCHOR_FOREGROUND for every directory class that you wish
|
|
||||||
# to have its own color.
|
|
||||||
#
|
#
|
||||||
|
# # Styling for WORK.
|
||||||
|
# typeset -g POWERLEVEL9K_DIR_WORK_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
||||||
# typeset -g POWERLEVEL9K_DIR_WORK_FOREGROUND=31
|
# typeset -g POWERLEVEL9K_DIR_WORK_FOREGROUND=31
|
||||||
# typeset -g POWERLEVEL9K_DIR_WORK_SHORTENED_FOREGROUND=103
|
# typeset -g POWERLEVEL9K_DIR_WORK_SHORTENED_FOREGROUND=103
|
||||||
# typeset -g POWERLEVEL9K_DIR_WORK_ANCHOR_FOREGROUND=39
|
# typeset -g POWERLEVEL9K_DIR_WORK_ANCHOR_FOREGROUND=39
|
||||||
#
|
#
|
||||||
|
# # Styling for WORK_NOT_WRITABLE.
|
||||||
|
# typeset -g POWERLEVEL9K_DIR_WORK_NOT_WRITABLE_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
||||||
|
# typeset -g POWERLEVEL9K_DIR_WORK_NOT_WRITABLE_FOREGROUND=31
|
||||||
|
# typeset -g POWERLEVEL9K_DIR_WORK_NOT_WRITABLE_SHORTENED_FOREGROUND=103
|
||||||
|
# typeset -g POWERLEVEL9K_DIR_WORK_NOT_WRITABLE_ANCHOR_FOREGROUND=39
|
||||||
|
#
|
||||||
|
# If a styling parameter isn't explicitly defined for some class, it falls back to the classless
|
||||||
|
# parameter. For example, if POWERLEVEL9K_DIR_WORK_NOT_WRITABLE_FOREGROUND is not set, it falls
|
||||||
|
# back to POWERLEVEL9K_DIR_FOREGROUND.
|
||||||
|
#
|
||||||
typeset -g POWERLEVEL9K_DIR_CLASSES=()
|
typeset -g POWERLEVEL9K_DIR_CLASSES=()
|
||||||
|
|
||||||
|
# Custom prefix.
|
||||||
|
#typeset -g POWERLEVEL9K_DIR_PREFIX='%fin '
|
||||||
|
|
||||||
#####################################[ vcs: git status ]######################################
|
#####################################[ vcs: git status ]######################################
|
||||||
# Branch icon. Set this parameter to '\uF126 ' for the popular Powerline branch icon.
|
# Branch icon. Set this parameter to '\uF126 ' for the popular Powerline branch icon.
|
||||||
typeset -g POWERLEVEL9K_VCS_BRANCH_ICON='\uF126 '
|
typeset -g POWERLEVEL9K_VCS_BRANCH_ICON='\uF126 '
|
||||||
@ -393,6 +363,11 @@
|
|||||||
# ⇡42 if ahead of the remote; no leading space if also behind the remote: ⇣42⇡42.
|
# ⇡42 if ahead of the remote; no leading space if also behind the remote: ⇣42⇡42.
|
||||||
(( VCS_STATUS_COMMITS_AHEAD && !VCS_STATUS_COMMITS_BEHIND )) && res+=" "
|
(( VCS_STATUS_COMMITS_AHEAD && !VCS_STATUS_COMMITS_BEHIND )) && res+=" "
|
||||||
(( VCS_STATUS_COMMITS_AHEAD )) && res+="${clean}${VCS_STATUS_COMMITS_AHEAD}${staged}⇡${clean}"
|
(( VCS_STATUS_COMMITS_AHEAD )) && res+="${clean}${VCS_STATUS_COMMITS_AHEAD}${staged}⇡${clean}"
|
||||||
|
# ⇠42 if behind the push remote.
|
||||||
|
(( VCS_STATUS_PUSH_COMMITS_BEHIND )) && res+=" ${clean}⇠${VCS_STATUS_PUSH_COMMITS_BEHIND}"
|
||||||
|
(( VCS_STATUS_PUSH_COMMITS_AHEAD && !VCS_STATUS_PUSH_COMMITS_BEHIND )) && res+=" "
|
||||||
|
# ⇢42 if ahead of the push remote; no leading space if also behind: ⇠42⇢42.
|
||||||
|
(( VCS_STATUS_PUSH_COMMITS_AHEAD )) && res+="${clean}⇢${VCS_STATUS_PUSH_COMMITS_AHEAD}"
|
||||||
# *42 if have stashes.
|
# *42 if have stashes.
|
||||||
(( VCS_STATUS_STASHES )) && res+=" ${clean}${VCS_STATUS_STASHES}${stashed}${POWERLEVEL9K_VCS_STASHED_ICON}${clean}"
|
(( VCS_STATUS_STASHES )) && res+=" ${clean}${VCS_STATUS_STASHES}${stashed}${POWERLEVEL9K_VCS_STASHED_ICON}${clean}"
|
||||||
# 'merge' if the repo is in an unusual state.
|
# 'merge' if the repo is in an unusual state.
|
||||||
@ -407,6 +382,12 @@
|
|||||||
# See POWERLEVEL9K_VCS_UNTRACKED_ICON above if you want to use a different icon.
|
# See POWERLEVEL9K_VCS_UNTRACKED_ICON above if you want to use a different icon.
|
||||||
# Remove the next line if you don't want to see untracked files at all.
|
# Remove the next line if you don't want to see untracked files at all.
|
||||||
(( VCS_STATUS_NUM_UNTRACKED )) && res+=" ${VCS_STATUS_NUM_UNTRACKED}${untracked}${POWERLEVEL9K_VCS_UNTRACKED_ICON}${clean}"
|
(( VCS_STATUS_NUM_UNTRACKED )) && res+=" ${VCS_STATUS_NUM_UNTRACKED}${untracked}${POWERLEVEL9K_VCS_UNTRACKED_ICON}${clean}"
|
||||||
|
# "─" if the number of unstaged files is unknown. This can happen due to
|
||||||
|
# POWERLEVEL9K_VCS_MAX_INDEX_SIZE_DIRTY (see below) being set to a non-negative number lower
|
||||||
|
# than the number of files in the Git index, or due to bash.showDirtyState being set to false
|
||||||
|
# in the repository config. The number of staged and untracked files may also be unknown
|
||||||
|
# in this case.
|
||||||
|
(( VCS_STATUS_HAS_UNSTAGED == -1 )) && res+=" ${modified}─"
|
||||||
|
|
||||||
typeset -g my_git_format=$res
|
typeset -g my_git_format=$res
|
||||||
}
|
}
|
||||||
@ -423,7 +404,7 @@
|
|||||||
|
|
||||||
# Don't show Git status in prompt for repositories whose workdir matches this pattern.
|
# Don't show Git status in prompt for repositories whose workdir matches this pattern.
|
||||||
# For example, if set to '~', the Git repository at $HOME/.git will be ignored.
|
# For example, if set to '~', the Git repository at $HOME/.git will be ignored.
|
||||||
# Multiple patterns can be combined with '|': '~|~/some/dir'.
|
# Multiple patterns can be combined with '|': '~(|/foo)|/bar/baz/*'.
|
||||||
typeset -g POWERLEVEL9K_VCS_DISABLED_WORKDIR_PATTERN='~'
|
typeset -g POWERLEVEL9K_VCS_DISABLED_WORKDIR_PATTERN='~'
|
||||||
|
|
||||||
# Disable the default Git status formatting.
|
# Disable the default Git status formatting.
|
||||||
@ -447,7 +428,7 @@
|
|||||||
# isn't in an svn or hg reposotiry.
|
# isn't in an svn or hg reposotiry.
|
||||||
typeset -g POWERLEVEL9K_VCS_BACKENDS=(git)
|
typeset -g POWERLEVEL9K_VCS_BACKENDS=(git)
|
||||||
|
|
||||||
# These settings are used for respositories other than Git or when gitstatusd fails and
|
# These settings are used for repositories other than Git or when gitstatusd fails and
|
||||||
# Powerlevel10k has to fall back to using vcs_info.
|
# Powerlevel10k has to fall back to using vcs_info.
|
||||||
typeset -g POWERLEVEL9K_VCS_CLEAN_FOREGROUND=76
|
typeset -g POWERLEVEL9K_VCS_CLEAN_FOREGROUND=76
|
||||||
typeset -g POWERLEVEL9K_VCS_UNTRACKED_FOREGROUND=76
|
typeset -g POWERLEVEL9K_VCS_UNTRACKED_FOREGROUND=76
|
||||||
@ -490,7 +471,7 @@
|
|||||||
typeset -g POWERLEVEL9K_STATUS_ERROR_PIPE_VISUAL_IDENTIFIER_EXPANSION='✘'
|
typeset -g POWERLEVEL9K_STATUS_ERROR_PIPE_VISUAL_IDENTIFIER_EXPANSION='✘'
|
||||||
|
|
||||||
###################[ command_execution_time: duration of the last command ]###################
|
###################[ command_execution_time: duration of the last command ]###################
|
||||||
# Show duration of the last command if takes longer than this many seconds.
|
# Show duration of the last command if takes at least this many seconds.
|
||||||
typeset -g POWERLEVEL9K_COMMAND_EXECUTION_TIME_THRESHOLD=2
|
typeset -g POWERLEVEL9K_COMMAND_EXECUTION_TIME_THRESHOLD=2
|
||||||
# Show this many fractional digits. Zero means round to seconds.
|
# Show this many fractional digits. Zero means round to seconds.
|
||||||
typeset -g POWERLEVEL9K_COMMAND_EXECUTION_TIME_PRECISION=0
|
typeset -g POWERLEVEL9K_COMMAND_EXECUTION_TIME_PRECISION=0
|
||||||
@ -508,17 +489,18 @@
|
|||||||
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=70
|
typeset -g POWERLEVEL9K_BACKGROUND_JOBS_FOREGROUND=70
|
||||||
# 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='${P9K_VISUAL_IDENTIFIER}'
|
||||||
|
|
||||||
###############[ asdf: asdf version manager (https://github.com/asdf-vm/asdf) ]###############
|
###############[ asdf: asdf version manager (https://github.com/asdf-vm/asdf) ]###############
|
||||||
# Default asdf color. Only used to display tools for which there is no color override (see below).
|
# Default asdf color. Only used to display tools for which there is no color override (see below).
|
||||||
|
# Tip: Override this parameter for ${TOOL} with POWERLEVEL9K_ASDF_${TOOL}_FOREGROUND.
|
||||||
typeset -g POWERLEVEL9K_ASDF_FOREGROUND=66
|
typeset -g POWERLEVEL9K_ASDF_FOREGROUND=66
|
||||||
|
|
||||||
# There are four parameters that can be used to hide asdf tools. Each parameter describes
|
# There are four parameters that can be used to hide asdf tools. Each parameter describes
|
||||||
@ -587,9 +569,9 @@
|
|||||||
# typeset -g POWERLEVEL9K_ASDF_PYTHON_SHOW_ON_UPGLOB='*.foo|*.bar'
|
# typeset -g POWERLEVEL9K_ASDF_PYTHON_SHOW_ON_UPGLOB='*.foo|*.bar'
|
||||||
|
|
||||||
# Go version from asdf.
|
# Go version from asdf.
|
||||||
typeset -g POWERLEVEL9K_ASDF_GO_FOREGROUND=37
|
typeset -g POWERLEVEL9K_ASDF_GOLANG_FOREGROUND=37
|
||||||
# typeset -g POWERLEVEL9K_ASDF_GO_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
# typeset -g POWERLEVEL9K_ASDF_GOLANG_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
||||||
# typeset -g POWERLEVEL9K_ASDF_GO_SHOW_ON_UPGLOB='*.foo|*.bar'
|
# typeset -g POWERLEVEL9K_ASDF_GOLANG_SHOW_ON_UPGLOB='*.foo|*.bar'
|
||||||
|
|
||||||
# Node.js version from asdf.
|
# Node.js version from asdf.
|
||||||
typeset -g POWERLEVEL9K_ASDF_NODEJS_FOREGROUND=70
|
typeset -g POWERLEVEL9K_ASDF_NODEJS_FOREGROUND=70
|
||||||
@ -646,6 +628,16 @@
|
|||||||
# typeset -g POWERLEVEL9K_ASDF_PHP_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
# typeset -g POWERLEVEL9K_ASDF_PHP_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
||||||
# typeset -g POWERLEVEL9K_ASDF_PHP_SHOW_ON_UPGLOB='*.foo|*.bar'
|
# typeset -g POWERLEVEL9K_ASDF_PHP_SHOW_ON_UPGLOB='*.foo|*.bar'
|
||||||
|
|
||||||
|
# Haskell version from asdf.
|
||||||
|
typeset -g POWERLEVEL9K_ASDF_HASKELL_FOREGROUND=172
|
||||||
|
# typeset -g POWERLEVEL9K_ASDF_HASKELL_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
||||||
|
# typeset -g POWERLEVEL9K_ASDF_HASKELL_SHOW_ON_UPGLOB='*.foo|*.bar'
|
||||||
|
|
||||||
|
# Julia version from asdf.
|
||||||
|
typeset -g POWERLEVEL9K_ASDF_JULIA_FOREGROUND=70
|
||||||
|
# typeset -g POWERLEVEL9K_ASDF_JULIA_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
||||||
|
# typeset -g POWERLEVEL9K_ASDF_JULIA_SHOW_ON_UPGLOB='*.foo|*.bar'
|
||||||
|
|
||||||
##########[ 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.
|
||||||
typeset -g POWERLEVEL9K_NORDVPN_FOREGROUND=39
|
typeset -g POWERLEVEL9K_NORDVPN_FOREGROUND=39
|
||||||
@ -670,14 +662,15 @@
|
|||||||
###########################[ vim_shell: vim shell indicator (:sh) ]###########################
|
###########################[ vim_shell: vim shell indicator (:sh) ]###########################
|
||||||
# Vim shell indicator color.
|
# Vim shell indicator color.
|
||||||
typeset -g POWERLEVEL9K_VIM_SHELL_FOREGROUND=34
|
typeset -g POWERLEVEL9K_VIM_SHELL_FOREGROUND=34
|
||||||
# Icon to show when in a vim shell.
|
# Custom icon.
|
||||||
|
# typeset -g POWERLEVEL9K_VIM_SHELL_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
||||||
typeset -g POWERLEVEL9K_VIM_SHELL_VISUAL_IDENTIFIER_EXPANSION='${P9K_VISUAL_IDENTIFIER// }'
|
typeset -g POWERLEVEL9K_VIM_SHELL_VISUAL_IDENTIFIER_EXPANSION='${P9K_VISUAL_IDENTIFIER// }'
|
||||||
|
|
||||||
######[ midnight_commander: midnight commander shell (https://midnight-commander.org/) ]######
|
######[ midnight_commander: midnight commander shell (https://midnight-commander.org/) ]######
|
||||||
# Midnight Commander shell color.
|
# Midnight Commander shell color.
|
||||||
typeset -g POWERLEVEL9K_MIDNIGHT_COMMANDER_FOREGROUND=178
|
typeset -g POWERLEVEL9K_MIDNIGHT_COMMANDER_FOREGROUND=178
|
||||||
# Icon to show when in a midnight commander shell.
|
# Custom icon.
|
||||||
typeset -g POWERLEVEL9K_MIDNIGHT_COMMANDER_VISUAL_IDENTIFIER_EXPANSION='${P9K_VISUAL_IDENTIFIER// }'
|
# 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: nix shell (https://nixos.org/nixos/nix-pills/developing-with-nix-shell.html) ]##
|
||||||
# Nix shell color.
|
# Nix shell color.
|
||||||
@ -689,7 +682,7 @@
|
|||||||
# Custom icon.
|
# Custom icon.
|
||||||
# typeset -g POWERLEVEL9K_NIX_SHELL_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
# typeset -g POWERLEVEL9K_NIX_SHELL_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
||||||
|
|
||||||
##################################[ disk_usgae: disk usage ]##################################
|
##################################[ disk_usage: disk usage ]##################################
|
||||||
# Colors for different levels of disk usage.
|
# Colors for different levels of disk usage.
|
||||||
typeset -g POWERLEVEL9K_DISK_USAGE_NORMAL_FOREGROUND=35
|
typeset -g POWERLEVEL9K_DISK_USAGE_NORMAL_FOREGROUND=35
|
||||||
typeset -g POWERLEVEL9K_DISK_USAGE_WARNING_FOREGROUND=220
|
typeset -g POWERLEVEL9K_DISK_USAGE_WARNING_FOREGROUND=220
|
||||||
@ -762,6 +755,26 @@
|
|||||||
# Custom icon.
|
# Custom icon.
|
||||||
# typeset -g POWERLEVEL9K_TIMEWARRIOR_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
# typeset -g POWERLEVEL9K_TIMEWARRIOR_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
||||||
|
|
||||||
|
##############[ taskwarrior: taskwarrior task count (https://taskwarrior.org/) ]##############
|
||||||
|
# Taskwarrior color.
|
||||||
|
typeset -g POWERLEVEL9K_TASKWARRIOR_FOREGROUND=74
|
||||||
|
|
||||||
|
# Taskwarrior segment format. The following parameters are available within the expansion.
|
||||||
|
#
|
||||||
|
# - P9K_TASKWARRIOR_PENDING_COUNT The number of pending tasks: `task +PENDING count`.
|
||||||
|
# - P9K_TASKWARRIOR_OVERDUE_COUNT The number of overdue tasks: `task +OVERDUE count`.
|
||||||
|
#
|
||||||
|
# Zero values are represented as empty parameters.
|
||||||
|
#
|
||||||
|
# The default format:
|
||||||
|
#
|
||||||
|
# '${P9K_TASKWARRIOR_OVERDUE_COUNT:+"!$P9K_TASKWARRIOR_OVERDUE_COUNT/"}$P9K_TASKWARRIOR_PENDING_COUNT'
|
||||||
|
#
|
||||||
|
# typeset -g POWERLEVEL9K_TASKWARRIOR_CONTENT_EXPANSION='$P9K_TASKWARRIOR_PENDING_COUNT'
|
||||||
|
|
||||||
|
# Custom icon.
|
||||||
|
# typeset -g POWERLEVEL9K_TASKWARRIOR_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
||||||
|
|
||||||
##################################[ context: user@hostname ]##################################
|
##################################[ context: user@hostname ]##################################
|
||||||
# Context color when running with privileges.
|
# Context color when running with privileges.
|
||||||
typeset -g POWERLEVEL9K_CONTEXT_ROOT_FOREGROUND=196
|
typeset -g POWERLEVEL9K_CONTEXT_ROOT_FOREGROUND=196
|
||||||
@ -791,6 +804,9 @@
|
|||||||
typeset -g POWERLEVEL9K_VIRTUALENV_FOREGROUND=15
|
typeset -g POWERLEVEL9K_VIRTUALENV_FOREGROUND=15
|
||||||
# Don't show Python version next to the virtual environment name.
|
# Don't show Python version next to the virtual environment name.
|
||||||
typeset -g POWERLEVEL9K_VIRTUALENV_SHOW_PYTHON_VERSION=false
|
typeset -g POWERLEVEL9K_VIRTUALENV_SHOW_PYTHON_VERSION=false
|
||||||
|
# If set to "false", won't show virtualenv if pyenv is already shown.
|
||||||
|
# If set to "if-different", won't show virtualenv if it's the same as pyenv.
|
||||||
|
typeset -g POWERLEVEL9K_VIRTUALENV_SHOW_WITH_PYENV=false
|
||||||
# Separate environment name from Python version only with a space.
|
# Separate environment name from Python version only with a space.
|
||||||
typeset -g POWERLEVEL9K_VIRTUALENV_{LEFT,RIGHT}_DELIMITER=
|
typeset -g POWERLEVEL9K_VIRTUALENV_{LEFT,RIGHT}_DELIMITER=
|
||||||
# Custom icon.
|
# Custom icon.
|
||||||
@ -799,10 +815,33 @@
|
|||||||
#####################[ anaconda: conda environment (https://conda.io/) ]######################
|
#####################[ anaconda: conda environment (https://conda.io/) ]######################
|
||||||
# Anaconda environment color.
|
# Anaconda environment color.
|
||||||
typeset -g POWERLEVEL9K_ANACONDA_FOREGROUND=37
|
typeset -g POWERLEVEL9K_ANACONDA_FOREGROUND=37
|
||||||
# Don't show Python version next to the anaconda environment name.
|
|
||||||
typeset -g POWERLEVEL9K_ANACONDA_SHOW_PYTHON_VERSION=false
|
# Anaconda segment format. The following parameters are available within the expansion.
|
||||||
# Separate environment name from Python version only with a space.
|
#
|
||||||
typeset -g POWERLEVEL9K_ANACONDA_{LEFT,RIGHT}_DELIMITER=
|
# - CONDA_PREFIX Absolute path to the active Anaconda/Miniconda environment.
|
||||||
|
# - CONDA_DEFAULT_ENV Name of the active Anaconda/Miniconda environment.
|
||||||
|
# - CONDA_PROMPT_MODIFIER Configurable prompt modifier (see below).
|
||||||
|
# - P9K_ANACONDA_PYTHON_VERSION Current python version (python --version).
|
||||||
|
#
|
||||||
|
# CONDA_PROMPT_MODIFIER can be configured with the following command:
|
||||||
|
#
|
||||||
|
# conda config --set env_prompt '({default_env}) '
|
||||||
|
#
|
||||||
|
# The last argument is a Python format string that can use the following variables:
|
||||||
|
#
|
||||||
|
# - prefix The same as CONDA_PREFIX.
|
||||||
|
# - default_env The same as CONDA_DEFAULT_ENV.
|
||||||
|
# - name The last segment of CONDA_PREFIX.
|
||||||
|
# - stacked_env Comma-separated list of names in the environment stack. The first element is
|
||||||
|
# always the same as default_env.
|
||||||
|
#
|
||||||
|
# Note: '({default_env}) ' is the default value of env_prompt.
|
||||||
|
#
|
||||||
|
# The default value of POWERLEVEL9K_ANACONDA_CONTENT_EXPANSION expands to $CONDA_PROMPT_MODIFIER
|
||||||
|
# without the surrounding parentheses, or to the last path component of CONDA_PREFIX if the former
|
||||||
|
# is empty.
|
||||||
|
typeset -g POWERLEVEL9K_ANACONDA_CONTENT_EXPANSION='${${${${CONDA_PROMPT_MODIFIER#\(}% }%\)}:-${CONDA_PREFIX:t}}'
|
||||||
|
|
||||||
# Custom icon.
|
# Custom icon.
|
||||||
# typeset -g POWERLEVEL9K_ANACONDA_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
# typeset -g POWERLEVEL9K_ANACONDA_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
||||||
|
|
||||||
@ -814,6 +853,21 @@
|
|||||||
# If set to false, hide python version if it's the same as global:
|
# If set to false, hide python version if it's the same as global:
|
||||||
# $(pyenv version-name) == $(pyenv global).
|
# $(pyenv version-name) == $(pyenv global).
|
||||||
typeset -g POWERLEVEL9K_PYENV_PROMPT_ALWAYS_SHOW=false
|
typeset -g POWERLEVEL9K_PYENV_PROMPT_ALWAYS_SHOW=false
|
||||||
|
# If set to false, hide python version if it's equal to "system".
|
||||||
|
typeset -g POWERLEVEL9K_PYENV_SHOW_SYSTEM=true
|
||||||
|
|
||||||
|
# Pyenv segment format. The following parameters are available within the expansion.
|
||||||
|
#
|
||||||
|
# - P9K_CONTENT Current pyenv environment (pyenv version-name).
|
||||||
|
# - P9K_PYENV_PYTHON_VERSION Current python version (python --version).
|
||||||
|
#
|
||||||
|
# The default format has the following logic:
|
||||||
|
#
|
||||||
|
# 1. Display "$P9K_CONTENT $P9K_PYENV_PYTHON_VERSION" if $P9K_PYENV_PYTHON_VERSION is not
|
||||||
|
# empty and unequal to $P9K_CONTENT.
|
||||||
|
# 2. Otherwise display just "$P9K_CONTENT".
|
||||||
|
typeset -g POWERLEVEL9K_PYENV_CONTENT_EXPANSION='${P9K_CONTENT}${${P9K_PYENV_PYTHON_VERSION:#$P9K_CONTENT}:+ $P9K_PYENV_PYTHON_VERSION}'
|
||||||
|
|
||||||
# Custom icon.
|
# Custom icon.
|
||||||
# typeset -g POWERLEVEL9K_PYENV_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
# typeset -g POWERLEVEL9K_PYENV_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
||||||
|
|
||||||
@ -825,14 +879,21 @@
|
|||||||
# If set to false, hide go version if it's the same as global:
|
# If set to false, hide go version if it's the same as global:
|
||||||
# $(goenv version-name) == $(goenv global).
|
# $(goenv version-name) == $(goenv global).
|
||||||
typeset -g POWERLEVEL9K_GOENV_PROMPT_ALWAYS_SHOW=false
|
typeset -g POWERLEVEL9K_GOENV_PROMPT_ALWAYS_SHOW=false
|
||||||
|
# If set to false, hide go version if it's equal to "system".
|
||||||
|
typeset -g POWERLEVEL9K_GOENV_SHOW_SYSTEM=true
|
||||||
# Custom icon.
|
# Custom icon.
|
||||||
# typeset -g POWERLEVEL9K_GOENV_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
# 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
|
||||||
# Don't show node version if it's the same as global: $(nodenv version-name) == $(nodenv global).
|
# Hide node version if it doesn't come from one of these sources.
|
||||||
|
typeset -g POWERLEVEL9K_NODENV_SOURCES=(shell local global)
|
||||||
|
# If set to false, hide node version if it's the same as global:
|
||||||
|
# $(nodenv version-name) == $(nodenv global).
|
||||||
typeset -g POWERLEVEL9K_NODENV_PROMPT_ALWAYS_SHOW=false
|
typeset -g POWERLEVEL9K_NODENV_PROMPT_ALWAYS_SHOW=false
|
||||||
|
# If set to false, hide node version if it's equal to "system".
|
||||||
|
typeset -g POWERLEVEL9K_NODENV_SHOW_SYSTEM=true
|
||||||
# Custom icon.
|
# Custom icon.
|
||||||
# typeset -g POWERLEVEL9K_NODENV_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
# typeset -g POWERLEVEL9K_NODENV_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
||||||
|
|
||||||
@ -898,6 +959,28 @@
|
|||||||
# Custom icon.
|
# Custom icon.
|
||||||
# typeset -g POWERLEVEL9K_LARAVEL_VERSION_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
# typeset -g POWERLEVEL9K_LARAVEL_VERSION_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
||||||
|
|
||||||
|
####################[ java_version: java version (https://www.java.com/) ]####################
|
||||||
|
# Java version color.
|
||||||
|
typeset -g POWERLEVEL9K_JAVA_VERSION_FOREGROUND=32
|
||||||
|
# Show java version only when in a java project subdirectory.
|
||||||
|
typeset -g POWERLEVEL9K_JAVA_VERSION_PROJECT_ONLY=true
|
||||||
|
# Show brief version.
|
||||||
|
typeset -g POWERLEVEL9K_JAVA_VERSION_FULL=false
|
||||||
|
# Custom icon.
|
||||||
|
# typeset -g POWERLEVEL9K_JAVA_VERSION_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
||||||
|
|
||||||
|
###[ package: name@version from package.json (https://docs.npmjs.com/files/package.json) ]####
|
||||||
|
# Package color.
|
||||||
|
typeset -g POWERLEVEL9K_PACKAGE_FOREGROUND=117
|
||||||
|
# Package format. The following parameters are available within the expansion.
|
||||||
|
#
|
||||||
|
# - P9K_PACKAGE_NAME The value of `name` field in package.json.
|
||||||
|
# - P9K_PACKAGE_VERSION The value of `version` field in package.json.
|
||||||
|
#
|
||||||
|
# typeset -g POWERLEVEL9K_PACKAGE_CONTENT_EXPANSION='${P9K_PACKAGE_NAME//\%/%%}@${P9K_PACKAGE_VERSION//\%/%%}'
|
||||||
|
# Custom icon.
|
||||||
|
# typeset -g POWERLEVEL9K_PACKAGE_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
||||||
|
|
||||||
#############[ 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
|
||||||
@ -906,6 +989,8 @@
|
|||||||
# If set to false, hide ruby version if it's the same as global:
|
# If set to false, hide ruby version if it's the same as global:
|
||||||
# $(rbenv version-name) == $(rbenv global).
|
# $(rbenv version-name) == $(rbenv global).
|
||||||
typeset -g POWERLEVEL9K_RBENV_PROMPT_ALWAYS_SHOW=false
|
typeset -g POWERLEVEL9K_RBENV_PROMPT_ALWAYS_SHOW=false
|
||||||
|
# If set to false, hide ruby version if it's equal to "system".
|
||||||
|
typeset -g POWERLEVEL9K_RBENV_SHOW_SYSTEM=true
|
||||||
# Custom icon.
|
# Custom icon.
|
||||||
# typeset -g POWERLEVEL9K_RBENV_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
# typeset -g POWERLEVEL9K_RBENV_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
||||||
|
|
||||||
@ -933,6 +1018,8 @@
|
|||||||
# If set to false, hide lua version if it's the same as global:
|
# If set to false, hide lua version if it's the same as global:
|
||||||
# $(luaenv version-name) == $(luaenv global).
|
# $(luaenv version-name) == $(luaenv global).
|
||||||
typeset -g POWERLEVEL9K_LUAENV_PROMPT_ALWAYS_SHOW=false
|
typeset -g POWERLEVEL9K_LUAENV_PROMPT_ALWAYS_SHOW=false
|
||||||
|
# If set to false, hide lua version if it's equal to "system".
|
||||||
|
typeset -g POWERLEVEL9K_LUAENV_SHOW_SYSTEM=true
|
||||||
# Custom icon.
|
# Custom icon.
|
||||||
# typeset -g POWERLEVEL9K_LUAENV_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
# typeset -g POWERLEVEL9K_LUAENV_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
||||||
|
|
||||||
@ -944,6 +1031,8 @@
|
|||||||
# If set to false, hide java version if it's the same as global:
|
# If set to false, hide java version if it's the same as global:
|
||||||
# $(jenv version-name) == $(jenv global).
|
# $(jenv version-name) == $(jenv global).
|
||||||
typeset -g POWERLEVEL9K_JENV_PROMPT_ALWAYS_SHOW=false
|
typeset -g POWERLEVEL9K_JENV_PROMPT_ALWAYS_SHOW=false
|
||||||
|
# If set to false, hide java version if it's equal to "system".
|
||||||
|
typeset -g POWERLEVEL9K_JENV_SHOW_SYSTEM=true
|
||||||
# Custom icon.
|
# Custom icon.
|
||||||
# typeset -g POWERLEVEL9K_JENV_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
# typeset -g POWERLEVEL9K_JENV_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
||||||
|
|
||||||
@ -955,6 +1044,8 @@
|
|||||||
# If set to false, hide perl version if it's the same as global:
|
# If set to false, hide perl version if it's the same as global:
|
||||||
# $(plenv version-name) == $(plenv global).
|
# $(plenv version-name) == $(plenv global).
|
||||||
typeset -g POWERLEVEL9K_PLENV_PROMPT_ALWAYS_SHOW=false
|
typeset -g POWERLEVEL9K_PLENV_PROMPT_ALWAYS_SHOW=false
|
||||||
|
# If set to false, hide perl version if it's equal to "system".
|
||||||
|
typeset -g POWERLEVEL9K_PLENV_SHOW_SYSTEM=true
|
||||||
# Custom icon.
|
# Custom icon.
|
||||||
# typeset -g POWERLEVEL9K_PLENV_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
# typeset -g POWERLEVEL9K_PLENV_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
||||||
|
|
||||||
@ -966,13 +1057,42 @@
|
|||||||
# If set to false, hide php version if it's the same as global:
|
# If set to false, hide php version if it's the same as global:
|
||||||
# $(phpenv version-name) == $(phpenv global).
|
# $(phpenv version-name) == $(phpenv global).
|
||||||
typeset -g POWERLEVEL9K_PHPENV_PROMPT_ALWAYS_SHOW=false
|
typeset -g POWERLEVEL9K_PHPENV_PROMPT_ALWAYS_SHOW=false
|
||||||
|
# If set to false, hide php version if it's equal to "system".
|
||||||
|
typeset -g POWERLEVEL9K_PHPENV_SHOW_SYSTEM=true
|
||||||
# Custom icon.
|
# Custom icon.
|
||||||
# typeset -g POWERLEVEL9K_PHPENV_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
# typeset -g POWERLEVEL9K_PHPENV_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
||||||
|
|
||||||
|
#######[ scalaenv: scala version from scalaenv (https://github.com/scalaenv/scalaenv) ]#######
|
||||||
|
# Scala color.
|
||||||
|
typeset -g POWERLEVEL9K_SCALAENV_FOREGROUND=160
|
||||||
|
# Hide scala version if it doesn't come from one of these sources.
|
||||||
|
typeset -g POWERLEVEL9K_SCALAENV_SOURCES=(shell local global)
|
||||||
|
# If set to false, hide scala version if it's the same as global:
|
||||||
|
# $(scalaenv version-name) == $(scalaenv global).
|
||||||
|
typeset -g POWERLEVEL9K_SCALAENV_PROMPT_ALWAYS_SHOW=false
|
||||||
|
# If set to false, hide scala version if it's equal to "system".
|
||||||
|
typeset -g POWERLEVEL9K_SCALAENV_SHOW_SYSTEM=true
|
||||||
|
# Custom icon.
|
||||||
|
# typeset -g POWERLEVEL9K_SCALAENV_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
||||||
|
|
||||||
|
##########[ haskell_stack: haskell version from stack (https://haskellstack.org/) ]###########
|
||||||
|
# Haskell color.
|
||||||
|
typeset -g POWERLEVEL9K_HASKELL_STACK_FOREGROUND=172
|
||||||
|
# Hide haskell version if it doesn't come from one of these sources.
|
||||||
|
#
|
||||||
|
# shell: version is set by STACK_YAML
|
||||||
|
# local: version is set by stack.yaml up the directory tree
|
||||||
|
# global: version is set by the implicit global project (~/.stack/global-project/stack.yaml)
|
||||||
|
typeset -g POWERLEVEL9K_HASKELL_STACK_SOURCES=(shell local)
|
||||||
|
# If set to false, hide haskell version if it's the same as in the implicit global project.
|
||||||
|
typeset -g POWERLEVEL9K_HASKELL_STACK_ALWAYS_SHOW=true
|
||||||
|
# Custom icon.
|
||||||
|
# typeset -g POWERLEVEL9K_HASKELL_STACK_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
||||||
|
|
||||||
#############[ 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.
|
# Show kubecontext only when the the command you are typing invokes one of these tools.
|
||||||
# Tip: Remove the next line to always show kubecontext.
|
# Tip: Remove the next line to always show kubecontext.
|
||||||
#typeset -g POWERLEVEL9K_KUBECONTEXT_SHOW_ON_COMMAND='kubectl|helm|kubens|kubectx'
|
#typeset -g POWERLEVEL9K_KUBECONTEXT_SHOW_ON_COMMAND='kubectl|helm|kubens|kubectx|oc|istioctl|kogito|k9s|helmfile'
|
||||||
|
|
||||||
# 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.
|
||||||
@ -1057,6 +1177,8 @@
|
|||||||
# typeset -g POWERLEVEL9K_KUBECONTEXT_PREFIX='%fat '
|
# typeset -g POWERLEVEL9K_KUBECONTEXT_PREFIX='%fat '
|
||||||
|
|
||||||
################[ terraform: terraform workspace (https://www.terraform.io) ]#################
|
################[ terraform: terraform workspace (https://www.terraform.io) ]#################
|
||||||
|
# Don't show terraform workspace if it's literally "default".
|
||||||
|
typeset -g POWERLEVEL9K_TERRAFORM_SHOW_DEFAULT=false
|
||||||
# POWERLEVEL9K_TERRAFORM_CLASSES is an array with even number of elements. The first element
|
# 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.
|
# 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)
|
||||||
@ -1144,14 +1266,36 @@
|
|||||||
# Google cloud color.
|
# Google cloud color.
|
||||||
typeset -g POWERLEVEL9K_GCLOUD_FOREGROUND=32
|
typeset -g POWERLEVEL9K_GCLOUD_FOREGROUND=32
|
||||||
|
|
||||||
# Google cloud format. Change the value of POWERLEVEL9K_GCLOUD_CONTENT_EXPANSION if the default
|
# Google cloud format. Change the value of POWERLEVEL9K_GCLOUD_PARTIAL_CONTENT_EXPANSION and/or
|
||||||
# is too verbose or not informative enough.
|
# POWERLEVEL9K_GCLOUD_COMPLETE_CONTENT_EXPANSION if the default is too verbose or not informative
|
||||||
|
# enough. You can use the following parameters in the expansions. Each of them corresponds to the
|
||||||
|
# output of `gcloud` tool.
|
||||||
#
|
#
|
||||||
# P9K_GCLOUD_ACCOUNT: the output of `gcloud config get-value account`
|
# Parameter | Source
|
||||||
# P9K_GCLOUD_PROJECT: the output of `gcloud config get-value project`
|
# -------------------------|--------------------------------------------------------------------
|
||||||
# ${VARIABLE//\%/%%}: ${VARIABLE} with all occurences of '%' replaced with '%%'.
|
# P9K_GCLOUD_CONFIGURATION | gcloud config configurations list --format='value(name)'
|
||||||
|
# P9K_GCLOUD_ACCOUNT | gcloud config get-value account
|
||||||
|
# P9K_GCLOUD_PROJECT_ID | gcloud config get-value project
|
||||||
|
# P9K_GCLOUD_PROJECT_NAME | gcloud projects describe $P9K_GCLOUD_PROJECT_ID --format='value(name)'
|
||||||
#
|
#
|
||||||
typeset -g POWERLEVEL9K_GCLOUD_CONTENT_EXPANSION='${P9K_GCLOUD_PROJECT//\%/%%}'
|
# Note: ${VARIABLE//\%/%%} expands to ${VARIABLE} with all occurrences of '%' replaced with '%%'.
|
||||||
|
#
|
||||||
|
# Obtaining project name requires sending a request to Google servers. This can take a long time
|
||||||
|
# and even fail. When project name is unknown, P9K_GCLOUD_PROJECT_NAME is not set and gcloud
|
||||||
|
# prompt segment is in state PARTIAL. When project name gets known, P9K_GCLOUD_PROJECT_NAME gets
|
||||||
|
# set and gcloud prompt segment transitions to state COMPLETE.
|
||||||
|
#
|
||||||
|
# You can customize the format, icon and colors of gcloud segment separately for states PARTIAL
|
||||||
|
# and COMPLETE. You can also hide gcloud in state PARTIAL by setting
|
||||||
|
# POWERLEVEL9K_GCLOUD_PARTIAL_VISUAL_IDENTIFIER_EXPANSION and
|
||||||
|
# POWERLEVEL9K_GCLOUD_PARTIAL_CONTENT_EXPANSION to empty.
|
||||||
|
typeset -g POWERLEVEL9K_GCLOUD_PARTIAL_CONTENT_EXPANSION='${P9K_GCLOUD_PROJECT_ID//\%/%%}'
|
||||||
|
typeset -g POWERLEVEL9K_GCLOUD_COMPLETE_CONTENT_EXPANSION='${P9K_GCLOUD_PROJECT_NAME//\%/%%}'
|
||||||
|
|
||||||
|
# Send a request to Google (by means of `gcloud projects describe ...`) to obtain project name
|
||||||
|
# this often. Negative value disables periodic polling. In this mode project name is retrieved
|
||||||
|
# only when the current configuration, account or project id changes.
|
||||||
|
typeset -g POWERLEVEL9K_GCLOUD_REFRESH_PROJECT_NAME_SECONDS=60
|
||||||
|
|
||||||
# Custom icon.
|
# Custom icon.
|
||||||
# typeset -g POWERLEVEL9K_GCLOUD_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
# typeset -g POWERLEVEL9K_GCLOUD_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
||||||
@ -1225,6 +1369,10 @@
|
|||||||
# Regular expression for the VPN network interface. Run `ifconfig` or `ip -4 a show` while on VPN
|
# Regular expression for the VPN network interface. Run `ifconfig` or `ip -4 a show` while on VPN
|
||||||
# to see the name of the interface.
|
# to see the name of the interface.
|
||||||
typeset -g POWERLEVEL9K_VPN_IP_INTERFACE='(wg|(.*tun))[0-9]*'
|
typeset -g POWERLEVEL9K_VPN_IP_INTERFACE='(wg|(.*tun))[0-9]*'
|
||||||
|
# If set to true, show one segment per matching network interface. If set to false, show only
|
||||||
|
# one segment corresponding to the first matching network interface.
|
||||||
|
# Tip: If you set it to true, you'll probably want to unset POWERLEVEL9K_VPN_IP_CONTENT_EXPANSION.
|
||||||
|
typeset -g POWERLEVEL9K_VPN_IP_SHOW_ALL=false
|
||||||
# Custom icon.
|
# Custom icon.
|
||||||
# typeset -g POWERLEVEL9K_VPN_IP_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
# typeset -g POWERLEVEL9K_VPN_IP_VISUAL_IDENTIFIER_EXPANSION='⭐'
|
||||||
|
|
||||||
@ -1292,10 +1440,6 @@
|
|||||||
# P9K_WIFI_RSSI | signal strength in dBm, from -120 to 0
|
# P9K_WIFI_RSSI | signal strength in dBm, from -120 to 0
|
||||||
# P9K_WIFI_NOISE | noise in dBm, from -120 to 0
|
# P9K_WIFI_NOISE | noise in dBm, from -120 to 0
|
||||||
# P9K_WIFI_BARS | signal strength in bars, from 0 to 4 (derived from P9K_WIFI_RSSI and P9K_WIFI_NOISE)
|
# P9K_WIFI_BARS | signal strength in bars, from 0 to 4 (derived from P9K_WIFI_RSSI and P9K_WIFI_NOISE)
|
||||||
#
|
|
||||||
# All parameters except P9K_WIFI_BARS are extracted from the output of the following command:
|
|
||||||
#
|
|
||||||
# /System/Library/PrivateFrameworks/Apple80211.framework/Versions/Current/Resources/airport -I
|
|
||||||
|
|
||||||
####################################[ time: current time ]####################################
|
####################################[ time: current time ]####################################
|
||||||
# Current time color.
|
# Current time color.
|
||||||
@ -1375,5 +1519,8 @@
|
|||||||
(( ! $+functions[p10k] )) || p10k reload
|
(( ! $+functions[p10k] )) || p10k reload
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# Tell `p10k configure` which file it should overwrite.
|
||||||
|
typeset -g POWERLEVEL9K_CONFIG_FILE=${${(%):-%x}:a}
|
||||||
|
|
||||||
(( ${#p10k_config_opts} )) && setopt ${p10k_config_opts[@]}
|
(( ${#p10k_config_opts} )) && setopt ${p10k_config_opts[@]}
|
||||||
'builtin' 'unset' 'p10k_config_opts'
|
'builtin' 'unset' 'p10k_config_opts'
|
||||||
|
Loading…
Reference in New Issue
Block a user