36 lines
911 B
Bash
36 lines
911 B
Bash
source ~/.zplug/init.zsh
|
|
|
|
# plugins=(ansible git sudo systemd terraform themes vagrant vi-mode web-search zsh_reload wod)
|
|
# plugins+=todo
|
|
# plugins+=tmux
|
|
|
|
export AUTOSWITCH_DEFAULT_PYTHON="/usr/bin/python3"
|
|
|
|
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"
|
|
|
|
zplug "b4b4r07/httpstat", as:command, use:'(*).sh', rename-to:'$1'
|
|
zplug "drwetter/testssl.sh", as:command, use:'(*).sh', rename-to:'$1'
|
|
|
|
zplug "nichus/qi3ber2", as:theme
|
|
|
|
zplug "zsh-users/zsh-completions"
|
|
zplug "zsh-users/zsh-syntax-highlighting", defer:2
|
|
|
|
zplug "zplug/zplug", hook-build: "zplug --self-manage"
|
|
|
|
if ! zplug check; then
|
|
printf "zplug Install? [y/N]: "
|
|
if read -q; then
|
|
echo; zplug install
|
|
fi
|
|
fi
|
|
|
|
zplug load
|
|
|
|
PATH=$PATH:${HOME}/bin
|