diff options
author | Guangxiong Lin <[email protected]> | 2022-02-05 13:46:43 +0800 |
---|---|---|
committer | Guangxiong Lin <[email protected]> | 2022-02-05 13:47:04 +0800 |
commit | 5c653b8d79d314e0f0b0319582af2568d9b74612 (patch) | |
tree | 2e372a58ddea70d53fc3170adb1e1b66dcf70d6b | |
parent | 324d6a3c8f485a5f4bf7fd123d334d5d78a3402c (diff) | |
download | dotfiles-5c653b8d79d314e0f0b0319582af2568d9b74612.tar.gz dotfiles-5c653b8d79d314e0f0b0319582af2568d9b74612.tar.bz2 dotfiles-5c653b8d79d314e0f0b0319582af2568d9b74612.zip |
Add aliases to diff and grep to display color
-rw-r--r-- | .aliases | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -1,6 +1,8 @@ #!/usr/bin/env bash alias ls='ls --color=auto' +alias diff='diff --color=auto' +alias grep='grep --color=auto' alias emacs='emacs -nw' alias mu4e='emacs -nw -f mu4e' |