powerlevel10k/powerlevel9k.zsh-theme

45 lines
1.8 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
################################################################
# Temporarily change options.
'builtin' 'local' '-a' '_p9k_src_opts'
[[ ! -o 'aliases' ]] || _p9k_src_opts+=('aliases')
[[ ! -o 'sh_glob' ]] || _p9k_src_opts+=('sh_glob')
[[ ! -o 'no_brace_expand' ]] || _p9k_src_opts+=('no_brace_expand')
'builtin' 'setopt' 'no_aliases' 'no_sh_glob' 'brace_expand'
2014-12-05 19:15:35 +01:00
typeset -g __p9k_root_dir=${POWERLEVEL9K_INSTALLATION_DIR:-${${(%):-%x}:A:h}}
typeset -g __p9k_dump_file=${XDG_CACHE_HOME:-~/.cache}/p10k-dump-${(%):-%n}.zsh
2019-06-01 22:54:32 +02:00
() {
2019-07-17 08:05:26 +02:00
emulate -L zsh
2019-10-04 09:22:02 +02:00
setopt no_hist_expand extended_glob no_prompt_bang no_prompt_subst prompt_percent no_aliases
if (( $+__p9k_sourced )); then
2019-07-17 08:05:26 +02:00
prompt_powerlevel9k_setup
return
fi
2019-10-04 09:21:49 +02:00
if [[ -z $__p9k_dump_file(.zwc|)(#qNW) ]] && source $__p9k_dump_file 2>/dev/null && (( $+functions[_p9k_preinit] )); then
_p9k_preinit
fi
typeset -gr __p9k_sourced=1
if [[ -w $__p9k_root_dir && -w $__p9k_root_dir/internal && -w $__p9k_root_dir/gitstatus && ${(%):-%#} == % ]]; then
local f
for f in $__p9k_root_dir/{powerlevel9k.zsh-theme,powerlevel10k.zsh-theme,internal/p10k.zsh,internal/icons.zsh,internal/configure.zsh,gitstatus/gitstatus.plugin.zsh}; do
[[ $f.zwc -nt $f ]] || zcompile $f
done
fi
2019-07-28 12:19:51 +02:00
source $__p9k_root_dir/internal/p10k.zsh || true
2019-06-01 22:54:32 +02:00
}
2019-07-17 08:05:26 +02:00
(( ${#_p9k_src_opts} )) && setopt ${_p9k_src_opts[@]}
'builtin' 'unset' '_p9k_src_opts'