# Main bash configuration file. # Use UTF-8 encoding in the terminal. export LC_ALL=en_US.UTF-8 # Use Vim as editor. export EDITOR='vim' # Use Vi(m) style in bash. set -o vi # If a rc.local file exists load it, otherwise load a rc file for the current # hostname (first part before a dot) if it exists. host=$(echo $(hostname) | sed -e 's/\..*$//') if [ -f ~/.bash/rc.local ]; then source ~/.bash/rc.local elif [ -f ~/.bash/rc.$host ]; then source ~/.bash/rc.$host fi