Cleaned up the plugins.

This commit is contained in:
Sorin Ionescu 2011-08-30 23:16:15 -04:00
commit 90e7debc30
66 changed files with 902 additions and 1774 deletions

View file

@ -1 +1,19 @@
# Complete brew.
completion_file="${0:h}/_brew"
if [[ ! -e "$completion_file" ]]; then
if [[ -L "$completion_file" ]]; then
unlink "$completion_file" 2> /dev/null
fi
if (( $+commands[brew] )); then
ln -s \
"$(brew --prefix)/Library/Contributions/brew_zsh_completion.zsh" \
"$completion_file" \
2> /dev/null
fi
fi
unset completion_file
# Aliases
alias brews='brew list -1'