46 lines
874 B
Bash
Executable File
46 lines
874 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ -d "${HOME}/.bin" ] ; then
|
|
PATH=${HOME}/.bin:${PATH}
|
|
fi
|
|
|
|
|
|
if [ -d "${HOME}/tools/vim" ] ; then
|
|
PATH=${HOME}/Tools/vim:${PATH}
|
|
fi
|
|
|
|
# source development settings
|
|
if [ -f ~/.dev_profile ]; then
|
|
. ~/.dev_profile
|
|
fi
|
|
|
|
# if there is a C:/Projects folder on this box then I'm obviously using my work computer
|
|
if [ -d "C:/Projects" ]; then
|
|
. ~/.work_profile
|
|
fi
|
|
|
|
# Load pretty colors
|
|
if [ -f ~/.shell_colors ]; then
|
|
. ~/.shell_colors
|
|
fi
|
|
|
|
# Load any extra aliases
|
|
if [ -f ~/.bash_aliases ]; then
|
|
. ~/.bash_aliases
|
|
fi
|
|
|
|
# enable programmable completion features
|
|
if [ -f /etc/git_completion ]; then
|
|
. /etc/git_completion
|
|
fi
|
|
|
|
# enable programmable completion features
|
|
if [ -f /etc/git_completion ]; then
|
|
. /etc/git_completion
|
|
fi
|
|
|
|
# enable programmable completion features
|
|
if [ -f /etc/bash_completion ]; then
|
|
. /etc/bash_completion
|
|
fi
|