2013-05-19 22:24:47 +02:00
|
|
|
#
|
|
|
|
# Defines Homebrew aliases.
|
|
|
|
#
|
|
|
|
# Authors:
|
|
|
|
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
|
|
|
#
|
|
|
|
|
2020-04-23 01:43:57 +02:00
|
|
|
# Load dependencies.
|
|
|
|
pmodload 'helper'
|
|
|
|
|
2013-05-19 22:24:47 +02:00
|
|
|
# Return if requirements are not found.
|
2020-04-06 11:55:01 +02:00
|
|
|
if ! is-darwin && ! is-linux; then
|
2013-05-19 22:24:47 +02:00
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
|
2018-09-15 06:40:08 +02:00
|
|
|
#
|
2018-10-12 10:55:55 +02:00
|
|
|
# Variables
|
2018-09-15 06:40:08 +02:00
|
|
|
#
|
|
|
|
|
2019-10-17 08:55:40 +02:00
|
|
|
# Load standard Homebrew shellenv into the shell session.
|
2018-12-14 22:40:59 +01:00
|
|
|
# Load 'HOMEBREW_' prefixed variables only. Avoid loading 'PATH' related
|
|
|
|
# variables as they are already handled in standard zsh configuration.
|
2018-09-15 06:40:08 +02:00
|
|
|
if (( $+commands[brew] )); then
|
2024-04-06 01:21:15 +02:00
|
|
|
cache_file="${XDG_CACHE_HOME:-$HOME/.cache}/prezto/brew-shellenv-cache.zsh"
|
2024-04-09 03:37:23 +02:00
|
|
|
if [[ "$commands[brew]" -nt "$cache_file" \
|
2024-04-06 01:21:15 +02:00
|
|
|
|| "${ZDOTDIR:-$HOME}/.zpreztorc" -nt "$cache_file" \
|
2024-04-09 03:37:23 +02: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-06 01:21:15 +02:00
|
|
|
fi
|
2024-04-09 03:37:23 +02:00
|
|
|
|
|
|
|
source "$cache_file"
|
2024-04-06 01:21:15 +02:00
|
|
|
unset cache_file
|
2018-09-15 06:40:08 +02:00
|
|
|
fi
|
|
|
|
|
2013-05-19 22:24:47 +02:00
|
|
|
#
|
|
|
|
# Aliases
|
|
|
|
#
|
|
|
|
|
2014-05-02 21:20:23 +02:00
|
|
|
# Homebrew
|
2023-04-13 04:02:41 +02: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 21:20:23 +02:00
|
|
|
|
2023-04-13 04:02:41 +02: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
|