1
0
mirror of https://github.com/sorin-ionescu/prezto.git synced 2025-03-12 09:55:42 +08:00

57 lines
1.2 KiB
Bash
Raw Normal View History

2013-05-19 16:24:47 -04:00
#
# Defines Homebrew aliases.
#
# Authors:
# Sorin Ionescu <sorin.ionescu@gmail.com>
#
# Load dependencies.
pmodload 'helper'
2013-05-19 16:24:47 -04:00
# Return if requirements are not found.
if ! is-darwin && ! is-linux; then
2013-05-19 16:24:47 -04:00
return 1
fi
#
# Variables
#
2019-10-17 01:55:40 -05:00
# Load standard Homebrew shellenv into the shell session.
# Load 'HOMEBREW_' prefixed variables only. Avoid loading 'PATH' related
# variables as they are already handled in standard zsh configuration.
if (( $+commands[brew] )); then
eval "${(@M)${(f)"$(brew shellenv 2> /dev/null)"}:#export HOMEBREW*}"
fi
2013-05-19 16:24:47 -04:00
#
# Aliases
#
# Homebrew
2013-05-19 16:24:47 -04:00
alias brewc='brew cleanup'
alias brewi='brew install'
2019-10-17 01:55:40 -05:00
alias brewL='brew leaves'
2013-05-19 16:24:47 -04:00
alias brewl='brew list'
alias brewo='brew outdated'
2013-05-19 16:24:47 -04:00
alias brews='brew search'
alias brewu='brew upgrade'
alias brewx='brew uninstall'
# Homebrew Cask
2021-01-08 01:56:48 +01:00
alias caski='brew install --cask'
alias caskl='brew list --cask'
alias casko='brew outdated --cask'
alias casks='brew search --cask'
alias caskx='brew uninstall --cask'
function hb_deprecated {
local cmd="${@[3]}"
local cmd_args="${@:4}"
printf "'brew cask %s' has been deprecated, " "${cmd}"
printf "using 'brew %s' instead\n" "${cmd}"
command brew "${cmd}" "${=cmd_args}"
}