dotfiles/zshrc
2019-04-22 13:06:38 +03:00

14 lines
282 B
Bash
Executable file

#!/usr/bin/env zsh
DOTFILES_PATH="${0:h}"
for script in functions path exports zgen aliases palette theme; do
source "$DOTFILES_PATH/zsh/$script.zsh"
source_if_exists "$DOTFILES_PATH/custom/$script.zsh"
done
if command_exists rbenv; then
eval "$(rbenv init -)"
fi
welcome