22 lines
745 B
Bash
22 lines
745 B
Bash
[ -z "$PS1" ] && return
|
|
|
|
export PATH=$PATH:~/bin
|
|
export VISUAL=/bin/nano
|
|
export EDITOR=/bin/nano
|
|
export CLASSPATH=$CLASSPATH:/opt
|
|
export VDPAU_TRACE=1
|
|
|
|
if [ -f /etc/bash_completion ] && ! shopt -oq posix; then
|
|
. /etc/bash_completion
|
|
fi
|
|
|
|
for _FILE in $(ls ~/dotfiles/bash/); do
|
|
source ~/dotfiles/bash/$_FILE
|
|
done
|
|
|
|
#source ~/ovhrc
|
|
PATH="/home/qgodefro/perl5/bin${PATH:+:${PATH}}"; export PATH;
|
|
PERL5LIB="/home/qgodefro/perl5/lib/perl5${PERL5LIB:+:${PERL5LIB}}"; export PERL5LIB;
|
|
PERL_LOCAL_LIB_ROOT="/home/qgodefro/perl5${PERL_LOCAL_LIB_ROOT:+:${PERL_LOCAL_LIB_ROOT}}"; export PERL_LOCAL_LIB_ROOT;
|
|
PERL_MB_OPT="--install_base \"/home/qgodefro/perl5\""; export PERL_MB_OPT;
|
|
PERL_MM_OPT="INSTALL_BASE=/home/qgodefro/perl5"; export PERL_MM_OPT;
|