25 lines
628 B
Bash
25 lines
628 B
Bash
#!/usr/bin/env bash
|
|
|
|
# if running bash
|
|
if [ -n "$BASH_VERSION" ]; then
|
|
|
|
# source all the things
|
|
for file in ~/.{bashrc,bash_prompt,bash_aliases,private}; do
|
|
[ -r "$file" ] && [ -f "$file" ] && source "$file"
|
|
done;
|
|
unset file;
|
|
|
|
fi
|
|
|
|
# set PATH so it includes user's private bin if it exists
|
|
if [ -d "$HOME/bin" ] ; then
|
|
PATH="$HOME/bin:$PATH"
|
|
fi
|
|
|
|
if [ -f "$HOME/code/google-cloud-sdk/" ]; then
|
|
source "$HOME/code/google-cloud-sdk/path.bash.inc"
|
|
source "$HOME/code/google-cloud-sdk/completion.bash.inc"
|
|
fi
|
|
|
|
# define CDPATHs which are autocompleted from when doing cd
|
|
export CDPATH=$CDPATH:~/code |