#!/bin/bash
# make history short
export HISTSIZE=200

# clean up/make nicer prompt
export PS1='\[\e[0;32m\]\@ \[\e[0;01m\]\u@\h:\W \[\e[0;01m\]\n\[\e[0;32m\]\[\e[1;01m\]# \[\e[0;0m\]'
export PS2='\[\e[0;32m\]\[\e[1;01m\]> \[\e[0;0m\]'
export PS4='\[\e[0;32m\]\[\e[1;01m\]+ \[\e[0;0m\]'

# don't save duplicates in the history
export HISTCONTROL='ignoredups'
