mirror of
https://github.com/lloeki/dotfiles.git
synced 2025-12-06 07:24:39 +01:00
10 lines
259 B
Bash
Executable file
10 lines
259 B
Bash
Executable file
# add some color
|
|
alias grep=grep --color=auto
|
|
CLICOLOR=1;
|
|
export CLICOLOR
|
|
|
|
# gnome terminal knows colors
|
|
[[ "$COLORTERM" == "gnome-terminal" ]] && export TERM=xterm-256color
|
|
[[ "$COLORTERM" == "xfce4-terminal" ]] && export TERM=xterm-256color
|
|
|
|
# vim: ft=bash
|