powerlevel10k/powerlevel9k.zsh-theme

53 lines
1.6 KiB
Text
Raw Normal View History

# vim:ft=zsh ts=2 sw=2 sts=2 et fenc=utf-8
################################################################
# Powerlevel10k Theme
2019-03-01 21:18:05 +01:00
# https://github.com/romkatv/powerlevel10k
#
2019-03-22 10:01:16 +01:00
# Forked from Powerlevel9k Theme
# https://github.com/bhilburn/powerlevel9k
2014-12-05 19:15:35 +01:00
#
2019-03-22 10:01:16 +01:00
# Which in turn was forked from Agnoster Theme
# https://github.com/robbyrussell/oh-my-zsh/blob/74177c5320b2a1b2f8c4c695c05984b57fd7c6ea/themes/agnoster.zsh-theme
################################################################
2019-07-17 08:05:26 +02:00
if [[ -o 'aliases' ]]; then
'builtin' 'unsetopt' 'aliases'
local _p9k_restore_aliases=1
else
local _p9k_restore_aliases=0
fi
2014-12-05 19:15:35 +01:00
2019-06-01 22:54:32 +02:00
() {
2019-07-17 08:05:26 +02:00
emulate -L zsh
if (( $+_p9k_sourced )); then
prompt_powerlevel9k_setup
return
fi
typeset -gr _p9k_sourced=1
typeset -g _p9k_installation_dir=''
if [[ -n $POWERLEVEL9K_INSTALLATION_DIR ]]; then
_p9k_installation_dir=${POWERLEVEL9K_INSTALLATION_DIR:A}
else
if [[ ${(%):-%N} == '(eval)' ]]; then
if [[ $0 == '-antigen-load' && -r powerlevel9k.zsh-theme ]]; then
# Antigen uses eval to load things so it can change the plugin (!!)
# https://github.com/zsh-users/antigen/issues/581
_p9k_installation_dir=$PWD
2019-06-01 22:54:32 +02:00
else
2019-07-17 08:05:26 +02:00
>&2 print -P '%F{red}[ERROR]%f Powerlevel10k cannot figure out its installation directory.'
>&2 print -P 'Please set %F{green}POWERLEVEL9K_INSTALLATION_DIR.%f'
return 1
2019-06-01 22:54:32 +02:00
fi
2019-07-17 08:05:26 +02:00
else
_p9k_installation_dir=${${(%):-%x}:A:h}
2019-06-01 22:54:32 +02:00
fi
2019-07-17 08:05:26 +02:00
fi
2019-03-13 20:21:43 +01:00
2019-07-17 08:05:26 +02:00
source $_p9k_installation_dir/internal/p10k.zsh
2019-06-01 22:54:32 +02:00
}
2019-07-17 08:05:26 +02:00
(( ! _p9k_restore_aliases )) || setopt aliases
'builtin' 'unset' '_p9k_restore_aliases'