oh-my-zsh plugins without the aliases

oh-my-zsh is great and all --- but the plugins very liberally include aliases of which I never use any. Take a look at the git plugin which contains a about 50 aliases on its own.

To unbundle all these aliases I alias alias to true which prevents any bundled aliases from loading.

alias alias="true"
source $ZSH/oh-my-zsh.sh
unalias "alias"