From 056aca6bfe7a0c4b4a974da1c9f3f35bcacf1b25 Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Mon, 23 Jun 2014 23:16:28 +0200 Subject: [PATCH] moved includes --- .bashrc | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) 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