dotfiles/zshrc

15 lines
314 B
Bash
Raw Normal View History

2018-06-15 13:43:04 +00:00
#!/usr/bin/env zsh
2018-02-23 09:38:24 +00:00
2018-11-10 14:51:47 +00:00
DOTFILES_PATH="${0:h}"
2018-02-23 09:38:24 +00:00
for script in functions path exports zgen aliases palette theme; do
2018-11-10 14:51:47 +00:00
source "$DOTFILES_PATH/lib/$script.zsh"
source_if_exists "$DOTFILES_PATH/custom/$script.zsh"
done
2019-01-04 22:00:27 +00:00
if command_exists rbenv; then
eval "$(rbenv init -)"
fi
2019-01-01 23:38:15 +00:00
python "$DOTFILES_PATH/welcome/main.py"