aboutsummaryrefslogtreecommitdiff
path: root/powerlevel9k.zsh-theme
blob: ed312fb5e3be0f0855b94224d02da9b1cc107b64 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# vim:ft=zsh ts=2 sw=2 sts=2 et fenc=utf-8
################################################################
# Powerlevel10k Theme
# https://github.com/romkatv/powerlevel10k
#
# Forked from Powerlevel9k Theme
# https://github.com/bhilburn/powerlevel9k
#
# Which in turn was forked from Agnoster Theme
# https://github.com/robbyrussell/oh-my-zsh/blob/74177c5320b2a1b2f8c4c695c05984b57fd7c6ea/themes/agnoster.zsh-theme
################################################################

################################################################
# For basic documentation, please refer to the README.md in the
# top-level directory.
################################################################

## Turn on for Debugging
#PS4='%s%f%b%k%F{blue}%{λ%}%L %F{240}%N:%i%(?.. %F{red}%?) %1(_.%F{yellow}%-1_ .)%s%f%b%k '
#zstyle ':vcs_info:*+*:*' debug true
#set -o xtrace

_p9k_aliases=$(
    'builtin' 'alias' '-rL'
    'builtin' 'alias' '-gL'
    'builtin' 'alias' '-sL')

'builtin' 'unalias' '-m' '*'

_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
    else
      >&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'
    fi
  else
    _p9k_installation_dir=${${(%):-%x}:A:h}
  fi
fi

[[ -n $_p9k_installation_dir ]] && source $_p9k_installation_dir/internal/p10k.zsh

eval "$_p9k_aliases"