lib: enable diff color (#8807)

master
Monson Shao 6 years ago committed by GitHub
parent d24a9dbccc
commit 62648d71bb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      lib/theme-and-appearance.zsh

@ -39,6 +39,11 @@ if [[ "$DISABLE_LS_COLORS" != "true" ]]; then
fi
fi
# enable diff color if possible.
if diff --color . . &>/dev/null; then
alias diff='diff --color'
fi
setopt auto_cd
setopt multios
setopt prompt_subst

Loading…
Cancel
Save