mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2025-12-26 02:12:33 +01:00
Conflicts: custom/aliases.zsh plugins/git/git-aliases.plugin.zsh plugins/git/git-prompt-old.plugin.zsh plugins/git/git-prompt.plugin.zsh plugins/git/git.plugin.zsh themes/ashleydev.zsh-theme
12 lines
259 B
Bash
12 lines
259 B
Bash
if [[ "$DISABLE_COLOR" != 'true' ]]; then
|
|
if [[ -z "$GREP_OPTIONS" ]]; then
|
|
export GREP_OPTIONS='--color=auto'
|
|
fi
|
|
if [[ -z "$GREP_COLOR" ]]; then
|
|
export GREP_COLOR="1;32"
|
|
fi
|
|
else
|
|
export GREP_OPTIONS='--color=none'
|
|
export GREP_COLOR=''
|
|
fi
|
|
|