#!/bin/sh

# Load the shell dotfiles, and then some:
# * ~/.path can be used to extend `$PATH`.
# * ~/.extra can be used for other settings you don’t want to commit.
for file in ~/.config/shell/{path,exports,aliases,functions,extra}; do
        [ -r "$file" ] && [ -f "$file" ] && source "$file";
done;
unset file;

source ~/.config/zsh/rc

# Setup pyenv, if it is installed:
if [ -x "$(command -v pyenv)" ]; then
	eval "$(pyenv init --path)"
	eval "$(pyenv init -)"
fi
