zsh: add add antibody extras, cleanup plugins.txt

export _DOTFILES_EXTRA_PLUGINS=true to load plugins in
`antibody_plugins_extra.txt`
feature/improve-speed
bretello 2021-04-08 19:56:49 +02:00
parent e1921affdc
commit a6a927e6d8
Signed by: brethil
GPG Key ID: 876AAC6290170FE7
3 changed files with 11 additions and 6 deletions

View File

@ -1,17 +1,17 @@
djui/alias-tips
MichaelAquilina/zsh-autoswitch-virtualenv
psprint/zsh-navigation-tools
robbyrussell/oh-my-zsh
robbyrussell/oh-my-zsh path:plugins/colored-man-pages
robbyrussell/oh-my-zsh path:plugins/common-aliases
robbyrussell/oh-my-zsh path:plugins/docker
robbyrussell/oh-my-zsh path:plugins/docker-compose
robbyrussell/oh-my-zsh path:plugins/grc
robbyrussell/oh-my-zsh path:plugins/git
#robbyrussell/oh-my-zsh path:plugins/kubectl
robbyrussell/oh-my-zsh path:plugins/grc
robbyrussell/oh-my-zsh path:plugins/pip
robbyrussell/oh-my-zsh path:plugins/pyenv
robbyrussell/oh-my-zsh path:plugins/sudo
robbyrussell/oh-my-zsh path:plugins/vi-mode
robbyrussell/oh-my-zsh path:plugins/pyenv
djui/alias-tips
psprint/zsh-navigation-tools
zdharma/fast-syntax-highlighting
zsh-users/zsh-autosuggestions
zsh-users/zsh-completions
MichaelAquilina/zsh-autoswitch-virtualenv

View File

@ -0,0 +1,2 @@
robbyrussell/oh-my-zsh path:plugins/kubectl
robbyrussell/oh-my-zsh path:plugins/jira

View File

@ -19,6 +19,9 @@ uname="$(uname -a)"
if [[ $uname == *"ARCH"* || $uname == *"MANJARO"* ]]; then
antibody bundle < "$DOTFILES/antibody_plugins_arch.txt"
fi
if [[ -n "$_DOTFILES_EXTRA_PLUGINS" ]]; then
antibody bundle < "$DOTFILES/antibody_plugins_extra.txt"
fi
# Setup oh-my-zsh path
export ZSH="$(antibody path robbyrussell/oh-my-zsh)"