moved includes
This commit is contained in:
parent
5896633c1f
commit
056aca6bfe
1 changed files with 6 additions and 5 deletions
11
.bashrc
11
.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
|
||||
|
|
Loading…
Add table
Reference in a new issue