18 lines
412 B
Bash
18 lines
412 B
Bash
source ~/.zplug/init.zsh
|
|
|
|
zplug "zsh-users/zsh-syntax-highlighting", defer:2
|
|
zplug "zsh-users/zsh-completions"
|
|
zplug "zsh-users/zsh-autosuggestions"
|
|
|
|
|
|
# Install plugins if there are plugins that have not been installed
|
|
if ! zplug check --verbose; then
|
|
printf "Install? [y/N]: "
|
|
if read -q; then
|
|
echo; zplug install
|
|
fi
|
|
fi
|
|
|
|
# Then, source plugins and add commands to $PATH
|
|
zplug load --verbose
|