Add the bash functions to your profile, either directly in ~/.bash_profile or preferably by loading the snippets from ~/.bash_profile.d - for example add the following to your .bash_profile:
# Run snippets
for script in ~/.bash_profile.d/*.sh ; do
if [ -r $script ] ; then
. $script
fi
done