13 lines
257 B
Bash
13 lines
257 B
Bash
source ~/.zcustom/packages.zsh
|
|
source ~/.zcustom/p9k.zsh
|
|
source ~/.zcustom/alias.zsh
|
|
source ~/.zcustom/motd.zsh
|
|
|
|
if ! zplug check --verbose; then
|
|
printf "Install? [y/N]: "
|
|
if read -q; then
|
|
echo; zplug install
|
|
fi
|
|
fi
|
|
|
|
zplug load --verbose
|