diff options
Diffstat (limited to 'zsh/oh-my-zsh/plugins/brew/brew.plugin.zsh')
-rw-r--r-- | zsh/oh-my-zsh/plugins/brew/brew.plugin.zsh | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/zsh/oh-my-zsh/plugins/brew/brew.plugin.zsh b/zsh/oh-my-zsh/plugins/brew/brew.plugin.zsh deleted file mode 100644 index 070a083..0000000 --- a/zsh/oh-my-zsh/plugins/brew/brew.plugin.zsh +++ /dev/null @@ -1,21 +0,0 @@ -alias brewp='brew pin' -alias brewsp='brew list --pinned' -alias bubo='brew update && brew outdated' -alias bubc='brew upgrade && brew cleanup' -alias bubu='bubo && bubc' -alias buf='brew upgrade --formula' -alias bcubo='brew update && brew outdated --cask' -alias bcubc='brew upgrade --cask && brew cleanup' - -function brews() { - local formulae="$(brew leaves | xargs brew deps --installed --for-each)" - local casks="$(brew list --cask)" - - local blue="$(tput setaf 4)" - local bold="$(tput bold)" - local off="$(tput sgr0)" - - echo "${blue}==>${off} ${bold}Formulae${off}" - echo "${formulae}" | sed "s/^\(.*\):\(.*\)$/\1${blue}\2${off}/" - echo "\n${blue}==>${off} ${bold}Casks${off}\n${casks}" -} |