This theme is based on Bureau and modified. It supports Git and NPM.
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.
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.
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
An alias that forces npm install
to be shifted to yarn
.
npm() { if [[ $@ == "i" || $@ == "install" ]]; then command yarn; else command npm "$@"; fi; }