mirror of
https://github.com/dcarrillo/prezto.git
synced 2024-11-01 09:41:12 +00:00
fa6723a5ee
Don't rely on alias expansion to handle Pacman because aliases are not expanded in sudo. Signed-off-by: Sorin Ionescu <sorin.ionescu@gmail.com>
20 lines
263 B
Bash
20 lines
263 B
Bash
#
|
|
# Defines Yaourt aliases.
|
|
#
|
|
# Authors:
|
|
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
|
#
|
|
|
|
#
|
|
# Aliases
|
|
#
|
|
|
|
# Disable color.
|
|
if ! zstyle -t ':prezto:module:pacman:yaourt' color; then
|
|
alias pacman='yaourt --nocolor'
|
|
fi
|
|
|
|
# Manages .pac* files.
|
|
alias pacc='yaourt -C'
|
|
|