diff --git a/.bashrc b/.bashrc index 3845f5d..5e7e97d 100644 --- a/.bashrc +++ b/.bashrc @@ -28,11 +28,6 @@ if [ -z "$debian_chroot" ] && [ -r /etc/debian_chroot ]; then debian_chroot=$(cat /etc/debian_chroot) fi -# Include more scripts -if [ -f ~/.bash_aliases ]; then source ~/.bash_aliases; fi -if [ -f ~/.bash_env ]; then source ~/.bash_env; fi -if [ -f ~/.bash_prompt ]; then source ~/.bash_prompt; fi - # enable color support of ls and also add handy aliases if [ -x /usr/bin/dircolors ]; then test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)" @@ -42,3 +37,9 @@ if [ -x /usr/bin/dircolors ]; then alias fgrep='fgrep --color=auto' alias egrep='egrep --color=auto' fi + +# Include more scripts +if [ -f ~/.bash_aliases ]; then source ~/.bash_aliases; fi +if [ -f ~/.bash_env ]; then source ~/.bash_env; fi +if [ -f ~/.bash_prompt ]; then source ~/.bash_prompt; fi +if [ -f /etc/bash_completion ]; then source /etc/bash_completion; fi