# /etc/bashrc

# System wide functions and aliases
# Environment stuff goes in /etc/profile

# For some unknown reason bash refuses to inherit
# PS1 in some circumstances that I can't figure out.
# Putting PS1 here ensures that it gets loaded every time.

alias ls='/bin/ls -aFG'
alias ll='/bin/ls -aFGl'
alias ..='cd ..'
alias ...='cd ../..'
alias mc='mc -c on'
alias mcedit='mcedit -c'
alias df='df -h'
alias mcd='mount /cdrom'
alias ucd='umount /cdrom'
alias gcd='cd /cdrom'
alias mflp='mount /mnt/floppy'
alias uflp='umount /mnt/floppy'

## PS1="[\033[31;1m\u\033[0m@\033[36;1m\h\033[0m \033[36m\w\033[0m]>> "
## the one underhere doesn't have the wrap around problem ###################

PS1='[\[\033[31;1m\u\[\033[0m@\[\033[34;1m\h\[\033[0m \[\033[36m\w\[\033[0m]>> ' 
