20 lines
412 B
Bash
20 lines
412 B
Bash
[ -z "$PS1" ] && return
|
|
|
|
export PATH=$PATH:~/bin
|
|
export VISUAL=/bin/nano
|
|
export EDITOR=/bin/nano
|
|
export CLASSPATH=$CLASSPATH:/opt:/opt/autoser
|
|
export VDPAU_TRACE=1
|
|
|
|
if [ -f /etc/bash_completion ] && ! shopt -oq posix; then
|
|
. /etc/bash_completion
|
|
fi
|
|
if [ -f ~/.bash_aliases ]; then
|
|
. ~/.bash_aliases
|
|
fi
|
|
if [ -f ~/.bash_ps ]; then
|
|
. ~/.bash_ps
|
|
fi
|
|
if [ -f ~/.bash_export ]; then
|
|
. ~/.bash_export
|
|
fi
|