mirror of
https://github.com/zplug/zplug
synced 2026-03-06 22:21:43 +01:00
Remove the practice of copying ~/.ssh into the Docker image, which baked private keys into image layers. HTTPS (the default protocol) is sufficient for testing.
19 lines
334 B
Bash
19 lines
334 B
Bash
# Sample zshrc
|
|
|
|
source $HOME/.zplug/init.zsh
|
|
|
|
zplug "babarot/ultimate", as:theme
|
|
zplug 'babarot/zplug-doctor', lazy:yes
|
|
zplug 'babarot/zplug-cd', lazy:yes
|
|
zplug 'babarot/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
|