Added missing FX and named colors to spectrum.

This commit is contained in:
Sorin Ionescu 2011-09-11 01:02:10 -04:00
commit b65195156d
39 changed files with 57 additions and 16 deletions

19
plugins/brew/init.zsh Normal file
View file

@ -0,0 +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'