2013-05-19 20:24:47 +00:00
|
|
|
#
|
|
|
|
# Defines Homebrew aliases.
|
|
|
|
#
|
|
|
|
# Authors:
|
|
|
|
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
|
|
|
#
|
|
|
|
|
2020-04-22 23:43:57 +00:00
|
|
|
# Load dependencies.
|
|
|
|
pmodload 'helper'
|
|
|
|
|
2013-05-19 20:24:47 +00:00
|
|
|
# Return if requirements are not found.
|
2020-04-06 09:55:01 +00:00
|
|
|
if ! is-darwin && ! is-linux; then
|
2013-05-19 20:24:47 +00:00
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
|
2018-09-15 04:40:08 +00:00
|
|
|
#
|
2018-10-12 08:55:55 +00:00
|
|
|
# Variables
|
2018-09-15 04:40:08 +00:00
|
|
|
#
|
|
|
|
|
2019-10-17 06:55:40 +00:00
|
|
|
# Load standard Homebrew shellenv into the shell session.
|
2018-12-14 21:40:59 +00:00
|
|
|
# Load 'HOMEBREW_' prefixed variables only. Avoid loading 'PATH' related
|
|
|
|
# variables as they are already handled in standard zsh configuration.
|
2018-09-15 04:40:08 +00:00
|
|
|
if (( $+commands[brew] )); then
|
2024-04-05 23:21:15 +00:00
|
|
|
cache_file="${XDG_CACHE_HOME:-$HOME/.cache}/prezto/brew-shellenv-cache.zsh"
|
2024-04-09 01:37:23 +00:00
|
|
|
if [[ "$commands[brew]" -nt "$cache_file" \
|
2024-04-05 23:21:15 +00:00
|
|
|
|| "${ZDOTDIR:-$HOME}/.zpreztorc" -nt "$cache_file" \
|
2024-04-09 01:37:23 +00:00
|
|
|
|| ! -s "$cache_file" ]]; then
|
|
|
|
mkdir -p "$cache_file:h"
|
|
|
|
# Cache the result.
|
|
|
|
echo "${(@M)${(f)"$(brew shellenv 2> /dev/null)"}:#export HOMEBREW*}" >! "$cache_file" 2> /dev/null
|
2024-04-05 23:21:15 +00:00
|
|
|
fi
|
2024-04-09 01:37:23 +00:00
|
|
|
|
|
|
|
source "$cache_file"
|
2024-04-05 23:21:15 +00:00
|
|
|
unset cache_file
|
2018-09-15 04:40:08 +00:00
|
|
|
fi
|
|
|
|
|
2013-05-19 20:24:47 +00:00
|
|
|
#
|
|
|
|
# Aliases
|
|
|
|
#
|
|
|
|
|
2014-05-02 19:20:23 +00:00
|
|
|
# Homebrew
|
2023-04-13 02:02:41 +00:00
|
|
|
if ! zstyle -t ':prezto:module:homebrew:alias' skip; then
|
|
|
|
alias brewc='brew cleanup'
|
|
|
|
alias brewi='brew install'
|
|
|
|
alias brewL='brew leaves'
|
|
|
|
alias brewl='brew list'
|
|
|
|
alias brewo='brew outdated'
|
|
|
|
alias brews='brew search'
|
|
|
|
alias brewu='brew upgrade'
|
|
|
|
alias brewx='brew uninstall'
|
2014-05-02 19:20:23 +00:00
|
|
|
|
2023-04-13 02:02:41 +00:00
|
|
|
# Homebrew Cask
|
|
|
|
alias caski='brew install --cask'
|
|
|
|
alias caskl='brew list --cask'
|
|
|
|
alias casko='brew outdated --cask'
|
|
|
|
alias casks='brew search --cask'
|
|
|
|
alias casku='brew upgrade --cask'
|
|
|
|
alias caskx='brew uninstall --cask'
|
|
|
|
fi
|