dotfiles/zsh/zshrc

15 lines
274 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
ZSH_DOTFILES="${0:h}"
2018-02-23 09:38:24 +00:00
2019-04-23 18:38:53 +00:00
for script in functions path env plugins aliases palette theme; do
source "$ZSH_DOTFILES/$script.zsh"
source_if_exists "$ZSH_DOTFILES/custom/$script.zsh"
2018-11-10 14:51:47 +00:00
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