blob: 8da6ab60f1f4d910464cc06504245ac0830b6bad (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#
# ~/.bashrc
#
# If not running interactively, don't do anything
[[ $- != *i* ]] && return
alias ls='ls --color=auto'
PS1='[\u@\h \W]\$ '
# added by travis gem
[ -f /home/bozo/.travis/travis.sh ] && source /home/bozo/.travis/travis.sh
|