fix: omz plugin cleanup

This commit is contained in:
James Walker 2019-11-15 12:14:22 -05:00
parent 84141dcb59
commit 50a5e3b2f8
Signed by: walkah
GPG Key ID: 3C127179D6086E93

View File

@ -19,10 +19,12 @@ export ZSH_CUSTOM=$HOME/.zsh/custom
# Which plugins would you like to load? (plugins can be found in ~/.oh-my-zsh/plugins/*)
# Example format: plugins=(rails git textmate ruby lighthouse)
plugins=(asdf autojump aws gcloud extract command-not-found tmux tmuxinator git github ssh-agent docker docker-compose mix-fast)
plugins=(asdf aws gcloud extract command-not-found tmux tmuxinator git github ssh-agent docker docker-compose mix-fast)
# ruby
plugins=($plugins ruby gem rails bundler heroku)
if [ -x ruby ]; then
plugins=($plugins ruby gem rails bundler heroku)
fi
# node
plugins=($plugins npm yarn gatsby react-native)
@ -30,17 +32,14 @@ plugins=($plugins npm yarn gatsby react-native)
# python
plugins=($plugins pip pipenv)
# php / drupal
plugins=($plugins composer)
# Platform specific settings
case "$OSTYPE" in
darwin*)
plugins=($plugins osx)
;;
linux*)
plugins=($plugins deb)
;;
darwin*)
plugins=($plugins osx)
;;
linux*)
plugins=($plugins debian)
;;
esac
# OH MY ZSH!