bash-it/lib/appearance.bash

14 lines
268 B
Bash

#!/usr/bin/env bash
# colored grep
alias grep='grep --color=auto'
export GREP_COLOR='1;33'
# colored ls
export LSCOLORS='Gxfxcxdxdxegedabagacad'
# Load the theme
if [[ $BASH_IT_THEME ]]; then
source "$BASH_IT/themes/$BASH_IT_THEME/$BASH_IT_THEME.theme.bash"
fi