# ~/.bashrc: executed by bash(1) for non-login shells.
# see /usr/share/doc/bash/examples/startup-files for examples

# If running interactively, then:
if [ "$PS1" ]; then

    # enable color support of ls and also add handy aliases

    eval `dircolors`
    alias ls='ls --color=auto'
    alias dir='ls --color=auto --format=vertical'

    # set a fancy prompt

export PS1='\[\033[0;34m\]\u\[\033[0m\]@\[\033[0;36m\]\h\[\033[0m\] :\w\$'
export TERM=xterm
fi
if [ $TERM = xterm ]
        then
        TERM=xterm-color
        export TERM
fi
