# Welcome to bash, order of execution # /etc/profile # ~/.bash_profile # ~/.bashrc runs for each new shell # ~/.bash_logout runs when we exit. # Set the terminal, uncomment the following for colour terminals # TERM=xtermc # Our editors, selections include 'vim', 'emacs', 'pico' and 'ue' UAEDITOR=vim EDITOR=vim VISUAL=vim # Fix our path the way we like it. PATH="~clinch/bin:$HOME/bin:$PATH:/usr/local/sbin:/usr/sbin:/sbin" # Other variables PAGER="less -R" LESS="-R" MAILER=mutt MAILREADER=mutt export TERM UAEDITOR EDITOR VISUAL PATH PAGER LESS MAILER MAILREADER # Get the aliases and functions if [ -f ~/.bashrc ]; then . ~/.bashrc fi