summaryrefslogtreecommitdiff
path: root/zshrc
blob: f4107363283eb85e7944b6c4c59b2d1de54dc940 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
source /cfg/zsh/zplug/init.zsh

zstyle ':zplug:tag' 'from' 'local'

zplug 'zdharma/fast-syntax-highlighting'

if ! zplug check --verbose; then
  printf "Install? [y/N]: "
  if read -q; then
    echo; zplug install
  fi
fi

zplug load --verbose