mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-12 21:39:48 +01:00
lib: enable diff color (#8807)
This commit is contained in:
parent
d24a9dbccc
commit
62648d71bb
1 changed files with 5 additions and 0 deletions
|
@ -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…
Reference in a new issue