brew.plugin.zsh 673 B

1234567891011121314151617181920
  1. alias brews='brew list -1'
  2. alias bubo='brew update && brew outdated'
  3. alias bubc='brew upgrade && brew cleanup'
  4. alias bubu='bubo && bubc'
  5. if command mkdir "$ZSH_CACHE_DIR/.brew-completion-message" 2>/dev/null; then
  6. print -P '%F{yellow}'Oh My Zsh brew plugin:
  7. cat <<-'EOF'
  8. With the advent of their 1.0 release, Homebrew has decided to bundle
  9. the zsh completion as part of the brew installation, so we no longer
  10. ship it with the brew plugin; now it only has brew aliases.
  11. If you find that brew completion no longer works, make sure you have
  12. your Homebrew installation fully up to date.
  13. You will only see this message once.
  14. EOF
  15. print -P '%f'
  16. fi