feat: add brew config alias to brew plugin

This commit is contained in:
conrmahr 2025-09-02 11:17:15 -05:00
commit e9c2ea7979
2 changed files with 3 additions and 1 deletions

View file

@ -22,8 +22,9 @@ the `brew` binary before sourcing `oh-my-zsh.sh` and it'll set up the environmen
| Alias | Command | Description | | Alias | Command | Description |
| -------- | --------------------------------------- | --------------------------------------------------------------------- | | -------- | --------------------------------------- | --------------------------------------------------------------------- |
| `ba` | `brew autoremove` | Uninstall unnecessary formulae. | | `ba` | `brew autoremove` | Uninstall unnecessary formulae. |
| `bci` | `brew info --cask` | Display information about the given cask. | | `bcfg` | `brew config` | Show Homebrew and system configuration info useful for debugging. |
| `bcin` | `brew install --cask` | Install the given cask. | | `bcin` | `brew install --cask` | Install the given cask. |
| `bci` | `brew info --cask` | Display information about the given cask. |
| `bcl` | `brew list --cask` | List installed casks. | | `bcl` | `brew list --cask` | List installed casks. |
| `bcn` | `brew cleanup` | Run cleanup. | | `bcn` | `brew cleanup` | Run cleanup. |
| `bco` | `brew outdated --cask` | Report all outdated casks. | | `bco` | `brew outdated --cask` | Report all outdated casks. |

View file

@ -35,6 +35,7 @@ if [[ -d "$HOMEBREW_PREFIX/share/zsh/site-functions" ]]; then
fi fi
alias ba='brew autoremove' alias ba='brew autoremove'
alias bcfg='brew config'
alias bci='brew info --cask' alias bci='brew info --cask'
alias bcin='brew install --cask' alias bcin='brew install --cask'
alias bcl='brew list --cask' alias bcl='brew list --cask'