moved includes

This commit is contained in:
Steffen Vogel 2014-06-23 23:16:28 +02:00
parent 5896633c1f
commit 056aca6bfe

11
.bashrc
View file

@ -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