dotfiles/.bashrc
2016-12-18 12:51:16 +01:00

17 lines
357 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