dotfiles/zshrc

15 lines
282 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
2019-04-22 10:06:38 +00:00
source "$DOTFILES_PATH/zsh/$script.zsh"
2018-11-10 14:51:47 +00:00
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-03-08 18:10:30 +00:00
welcome