1
0
Fork 0
mirror of https://github.com/zplug/zplug synced 2024-06-03 13:26:10 +02:00
zplug/.zshrc

23 lines
376 B
Bash
Raw Normal View History

2018-05-14 15:42:29 +02:00
# Sample zshrc
ZPLUG_SUDO_PASSWORD=
ZPLUG_PROTOCOL=ssh
source $HOME/.zplug/init.zsh
zplug "b4b4r07/ultimate", as:theme
zplug 'b4b4r07/zplug-doctor', lazy:yes
zplug 'b4b4r07/zplug-cd', lazy:yes
zplug 'b4b4r07/zplug-rm', lazy:yes
if ! zplug check --verbose; then
printf "Install? [y/N]: "
if read -q; then
echo; zplug install
fi
echo
fi
zplug load