dotfiles-server/.profile

20 lines
461 B
Plaintext
Raw Permalink Normal View History

#!/usr/bin/env bash
# if running bash
if [ -n "$BASH_VERSION" ]; then
# source all the things
2017-05-14 04:06:52 +02:00
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
2017-01-21 01:13:11 +01:00
2017-09-02 03:20:52 +02:00
# define CDPATHs which are autocompleted from when doing cd
export CDPATH=$CDPATH:~/code