Skip to content

Commit

Permalink
feat(brew): add brew install alias (ohmyzsh#10660)
Browse files Browse the repository at this point in the history
  • Loading branch information
martinbeentjes authored and mcornella committed Jul 24, 2024
1 parent 8b6f0b1 commit 9a0e4f0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions plugins/brew/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ the `brew` binary before sourcing `oh-my-zsh.sh` and it'll set up the environmen
| `bcubo` | `brew update && brew outdated --cask` | Update Homebrew data, then list outdated casks. |
| `bcup` | `brew upgrade --cask` | Upgrade all outdated casks. |
| `bfu` | `brew upgrade --formula` | Upgrade only formulas (not casks). |
| `bi` | `brew install` | Install a formula. |
| `bl` | `brew list` | List all installed formulae. |
| `bo` | `brew outdated` | List installed formulae that have an updated version available. |
| `brewp` | `brew pin` | Pin a specified formula so that it's not upgraded. |
Expand Down
1 change: 1 addition & 0 deletions plugins/brew/brew.plugin.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ alias bcubc='brew upgrade --cask && brew cleanup'
alias bcubo='brew update && brew outdated --cask'
alias bcup='brew upgrade --cask'
alias bfu='brew upgrade --formula'
alias bi='brew install'
alias bl='brew list'
alias bo='brew outdated'
alias brewp='brew pin'
Expand Down

0 comments on commit 9a0e4f0

Please sign in to comment.