[ -f "$file" ] && . "$file";
done;
-#export VIRTUALENVWRAPPER_PYTHON=`/usr/bin/env python3`
-#. /mingw64/bin/virtualenvwrapper.sh
-
# last line
[ -f ~/.bashrc_local ] && . ~/.bashrc_local
-LS_COLORS="ow=01;36;40" && export LS_COLORS
-
-[ -f ~/.fzf.bash ] && source ~/.fzf.bash
+# set PATH so it includes user's private bin if it exists
+if [ -d "$HOME/bin" ] ; then
+ PATH="$HOME/bin:$PATH"
+fi
+
# set a fancy prompt (non-color, unless we know we "want" color)
case "$TERM" in
xterm-color|*-256color) color_prompt=yes;;
if [ -n "${BASH_VERSION}" ]; then
[ -f "${HOME}/.bashrc" ] && . "${HOME}/.bashrc"
fi
-
-# set path, environment, prompt etc
-for file in ${HOME}/.config/profile/*.sh; do
- [ -f "$file" ] && . "$file";
-done;