From e9c2ea797944c8f352733c9a5ed49ea1d90c3ec8 Mon Sep 17 00:00:00 2001 From: conrmahr Date: Tue, 2 Sep 2025 11:17:15 -0500 Subject: [PATCH] feat: add brew config alias to brew plugin --- plugins/brew/README.md | 3 ++- plugins/brew/brew.plugin.zsh | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/plugins/brew/README.md b/plugins/brew/README.md index 694f89e36..071130737 100644 --- a/plugins/brew/README.md +++ b/plugins/brew/README.md @@ -22,8 +22,9 @@ the `brew` binary before sourcing `oh-my-zsh.sh` and it'll set up the environmen | Alias | Command | Description | | -------- | --------------------------------------- | --------------------------------------------------------------------- | | `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. | +| `bci` | `brew info --cask` | Display information about the given cask. | | `bcl` | `brew list --cask` | List installed casks. | | `bcn` | `brew cleanup` | Run cleanup. | | `bco` | `brew outdated --cask` | Report all outdated casks. | diff --git a/plugins/brew/brew.plugin.zsh b/plugins/brew/brew.plugin.zsh index 2c2890cf7..a582941cb 100644 --- a/plugins/brew/brew.plugin.zsh +++ b/plugins/brew/brew.plugin.zsh @@ -35,6 +35,7 @@ if [[ -d "$HOMEBREW_PREFIX/share/zsh/site-functions" ]]; then fi alias ba='brew autoremove' +alias bcfg='brew config' alias bci='brew info --cask' alias bcin='brew install --cask' alias bcl='brew list --cask'