2015-06-07 01:10:27 +00:00
|
|
|
# vim:ft=zsh ts=2 sw=2 sts=2 et fenc=utf-8
|
2015-04-02 17:45:53 +00:00
|
|
|
################################################################
|
2019-03-22 09:00:27 +00:00
|
|
|
# Powerlevel10k Theme
|
2019-03-01 20:18:05 +00:00
|
|
|
# https://github.com/romkatv/powerlevel10k
|
|
|
|
#
|
2019-03-22 09:01:16 +00:00
|
|
|
# Forked from Powerlevel9k Theme
|
2015-02-01 23:33:21 +00:00
|
|
|
# https://github.com/bhilburn/powerlevel9k
|
2014-12-05 18:15:35 +00:00
|
|
|
#
|
2019-03-22 09:01:16 +00:00
|
|
|
# Which in turn was forked from Agnoster Theme
|
2019-03-22 09:00:27 +00:00
|
|
|
# https://github.com/robbyrussell/oh-my-zsh/blob/74177c5320b2a1b2f8c4c695c05984b57fd7c6ea/themes/agnoster.zsh-theme
|
2015-04-02 17:45:53 +00:00
|
|
|
################################################################
|
2014-12-05 01:26:21 +00:00
|
|
|
|
2019-07-17 06:05:26 +00:00
|
|
|
if [[ -o 'aliases' ]]; then
|
|
|
|
'builtin' 'unsetopt' 'aliases'
|
2019-07-25 06:00:51 +00:00
|
|
|
local __p9k_restore_aliases=1
|
2019-07-17 06:05:26 +00:00
|
|
|
else
|
2019-07-25 06:00:51 +00:00
|
|
|
local __p9k_restore_aliases=0
|
2019-07-17 06:05:26 +00:00
|
|
|
fi
|
2014-12-05 18:15:35 +00:00
|
|
|
|
2019-09-20 09:22:14 +00:00
|
|
|
typeset -g __p9k_root_dir="${POWERLEVEL9K_INSTALLATION_DIR:-${${(%):-%x}:A:h}}"
|
2019-08-19 08:52:41 +00:00
|
|
|
|
2019-06-01 20:54:32 +00:00
|
|
|
() {
|
2019-07-17 06:05:26 +00:00
|
|
|
emulate -L zsh
|
2019-09-20 09:22:14 +00:00
|
|
|
setopt no_hist_expand extended_glob no_prompt_bang no_prompt_subst prompt_percent
|
2019-07-23 13:47:25 +00:00
|
|
|
if (( $+__p9k_sourced )); then
|
2019-07-17 06:05:26 +00:00
|
|
|
prompt_powerlevel9k_setup
|
|
|
|
return
|
|
|
|
fi
|
2019-07-23 13:47:25 +00:00
|
|
|
typeset -gr __p9k_sourced=1
|
2019-07-28 10:19:51 +00:00
|
|
|
source $__p9k_root_dir/internal/p10k.zsh || true
|
2019-06-01 20:54:32 +00:00
|
|
|
}
|
2019-07-17 06:05:26 +00:00
|
|
|
|
2019-07-25 06:00:51 +00:00
|
|
|
(( ! __p9k_restore_aliases )) || setopt aliases
|
|
|
|
'builtin' 'unset' '__p9k_restore_aliases'
|