dotfiles/.bashrc
2016-11-23 10:57:56 +01:00

10 lines
218 B
Bash

export PATH=$PATH:~/bin
export VISUAL=/bin/nano
export EDITOR=/bin/nano
if [ -f /etc/bash_completion ] && ! shopt -oq posix; then
. /etc/bash_completion
fi
if [ -f ~/.bash_aliases ]; then
. ~/.bash_aliases
fi