blob: d4dba9f40d4d38cd94a07904d0c1db47e8a46968 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# .bashrc
# Source global definitions
if [ -f /etc/bashrc ]; then
. /etc/bashrc
fi
# User specific aliases and functions
PS1='\[\e[0;31m\]\u\[\e[m\] \[\e[1;34m\]\w\[\e[m\] $ '
export PERL5LIB=/vagrant/local/lib/perl5
export PATH=/vagrant/local/bin:$PATH
cd /vagrant
|