My Oh-My-Zsh Theme

This theme is based on Bureau and modified. It supports Git and NPM.

Install and Enable

To install the theme, copy the w00fz-bureau.zsh-theme file under ~/.zshrc/themes. Then, to enable it, set ZSH_THEME to w00fz-bureau in your ~/.zshrc, before sourcing Oh My Zsh.

Colors Palette

I use iTerm2 as terminal of choice on my mac. If you like my palette, you can import the w00fz.itermcolors that is available in this repo.

My Oh-My-Zsh Plugins

plugins=(git brew encode64 phing colorize copydir copyfile dirhistory autojump web-search osx)
[[ -s $(brew --prefix)/etc/profile.d/autojump.sh ]] && . $(brew --prefix)/etc/profile.d/autojump.sh

Bonus: Yarn > NPM

An alias that forces npm install to be shifted to yarn.

npm() { if [[ $@ == "i" || $@ == "install" ]]; then command yarn; else command npm "$@"; fi; }