
PS1='\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
alias ls='ls --color=auto'
alias grep='grep --color=auto'

HISTFILE=/var/tmp/.bash_history
HISTFILESIZE=100
HISTSIZE=100

bind '"\e[1~": beginning-of-line' &> /dev/null
bind '"\e[4~": end-of-line' &> /dev/null

if [ -f ~/.bashrc ]; then
	source ~/.bashrc
fi

