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/*) # Which plugins would you like to load? (plugins can be found in ~/.oh-my-zsh/plugins/*)
# Example format: plugins=(rails git textmate ruby lighthouse) # 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 # ruby
plugins=($plugins ruby gem rails bundler heroku) if [ -x ruby ]; then
plugins=($plugins ruby gem rails bundler heroku)
fi
# node # node
plugins=($plugins npm yarn gatsby react-native) plugins=($plugins npm yarn gatsby react-native)
@ -30,17 +32,14 @@ plugins=($plugins npm yarn gatsby react-native)
# python # python
plugins=($plugins pip pipenv) plugins=($plugins pip pipenv)
# php / drupal
plugins=($plugins composer)
# Platform specific settings # Platform specific settings
case "$OSTYPE" in case "$OSTYPE" in
darwin*) darwin*)
plugins=($plugins osx) plugins=($plugins osx)
;; ;;
linux*) linux*)
plugins=($plugins deb) plugins=($plugins debian)
;; ;;
esac esac
# OH MY ZSH! # OH MY ZSH!