shuffled file source order around
parent
4c4aea1c04
commit
15c2242554
|
|
@ -72,9 +72,7 @@ git() {
|
||||||
}
|
}
|
||||||
|
|
||||||
commits() {
|
commits() {
|
||||||
echo ""
|
printmotd
|
||||||
fortune
|
|
||||||
echo ""
|
|
||||||
if [ -f `which git-stats` ]; then
|
if [ -f `which git-stats` ]; then
|
||||||
"git-stats"
|
"git-stats"
|
||||||
fi
|
fi
|
||||||
|
|
|
||||||
20
.profile
20
.profile
|
|
@ -9,16 +9,6 @@ if [ -d "${HOME}/tools/vim" ] ; then
|
||||||
PATH=${HOME}/Tools/vim:${PATH}
|
PATH=${HOME}/Tools/vim:${PATH}
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# source development settings
|
|
||||||
if [ -f ~/.dev_profile ]; then
|
|
||||||
. ~/.dev_profile
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Load pretty colors
|
|
||||||
if [ -f ~/.shell_colors ]; then
|
|
||||||
. ~/.shell_colors
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Load any extra aliases
|
# Load any extra aliases
|
||||||
if [ -f ~/.bash_aliases ]; then
|
if [ -f ~/.bash_aliases ]; then
|
||||||
. ~/.bash_aliases
|
. ~/.bash_aliases
|
||||||
|
|
@ -29,6 +19,16 @@ if [ -f ~/.bash_functions ]; then
|
||||||
. ~/.bash_functions
|
. ~/.bash_functions
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# source development settings
|
||||||
|
if [ -f ~/.dev_profile ]; then
|
||||||
|
. ~/.dev_profile
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Load pretty colors
|
||||||
|
if [ -f ~/.shell_colors ]; then
|
||||||
|
. ~/.shell_colors
|
||||||
|
fi
|
||||||
|
|
||||||
# enable programmable completion features
|
# enable programmable completion features
|
||||||
if [ -f /etc/git_completion ]; then
|
if [ -f /etc/git_completion ]; then
|
||||||
. /etc/git_completion
|
. /etc/git_completion
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue