2020-08-24 17:10:07 -04:00
|
|
|
source ~/.zplug/init.zsh
|
2016-03-04 19:56:05 -05:00
|
|
|
|
2020-08-24 17:10:07 -04:00
|
|
|
# plugins=(ansible git sudo systemd terraform themes vagrant vi-mode web-search zsh_reload wod)
|
|
|
|
# plugins+=todo
|
|
|
|
# plugins+=tmux
|
2016-03-04 19:56:05 -05:00
|
|
|
|
2020-08-24 17:10:07 -04:00
|
|
|
export AUTOSWITCH_DEFAULT_PYTHON="/usr/bin/python3"
|
2016-03-04 19:56:05 -05:00
|
|
|
|
2020-08-24 17:10:07 -04:00
|
|
|
zplug "plugins/git", from:oh-my-zsh
|
|
|
|
zplug "plugins/sudo", from:oh-my-zsh
|
|
|
|
zplug "plugins/vi-mode", from:oh-my-zsh
|
|
|
|
zplug "plugins/vagrant", from:oh-my-zsh
|
|
|
|
zplug "tcnksm/docker-alias", use:zshrc
|
|
|
|
zplug "MichaelAquilina/zsh-autoswitch-virtualenv"
|
2016-03-04 19:56:05 -05:00
|
|
|
|
2020-08-24 17:10:07 -04:00
|
|
|
zplug "b4b4r07/httpstat", as:command, use:'(*).sh', rename-to:'$1'
|
|
|
|
zplug "drwetter/testssl.sh", as:command, use:'(*).sh', rename-to:'$1'
|
2016-03-04 19:56:05 -05:00
|
|
|
|
2020-08-24 17:10:07 -04:00
|
|
|
zplug "nichus/qi3ber2", as:theme
|
2016-03-04 19:56:05 -05:00
|
|
|
|
2020-08-24 17:10:07 -04:00
|
|
|
zplug "zsh-users/zsh-completions"
|
|
|
|
zplug "zsh-users/zsh-syntax-highlighting", defer:2
|
2016-03-04 19:56:05 -05:00
|
|
|
|
2020-08-24 17:10:07 -04:00
|
|
|
zplug "zplug/zplug", hook-build: "zplug --self-manage"
|
2016-03-04 19:56:05 -05:00
|
|
|
|
2020-08-24 17:10:07 -04:00
|
|
|
if ! zplug check; then
|
|
|
|
printf "zplug Install? [y/N]: "
|
|
|
|
if read -q; then
|
|
|
|
echo; zplug install
|
|
|
|
fi
|
2016-06-29 18:28:34 -04:00
|
|
|
fi
|
2016-03-04 19:56:05 -05:00
|
|
|
|
2020-08-24 17:10:07 -04:00
|
|
|
zplug load
|
2017-01-30 15:15:34 -05:00
|
|
|
|
2020-08-24 17:10:07 -04:00
|
|
|
PATH=$PATH:${HOME}/bin
|