1
0
mirror of https://github.com/zplug/zplug synced 2026-03-06 22:21:43 +01:00
zplug/.zshrc
babarot a17c4d3e63 chore: remove SSH key handling from Docker setup and clean up sample config
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.
2026-03-04 16:44:13 +09:00

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