2018-06-15 13:43:04 +00:00
|
|
|
#!/usr/bin/env zsh
|
2018-02-23 09:38:24 +00:00
|
|
|
|
2019-04-22 15:07:02 +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
|
2019-04-22 15:07:02 +00:00
|
|
|
source "$ZSH_DOTFILES/$script.zsh"
|
|
|
|
source_if_exists "$ZSH_DOTFILES/custom/$script.zsh"
|
2018-11-10 14:51:47 +00:00
|
|
|
done
|
|
|
|
|
2019-05-05 23:24:22 +00:00
|
|
|
command_exists rbenv && eval "$(rbenv init -)"
|
|
|
|
|
2019-05-09 16:25:41 +00:00
|
|
|
export BASE16_SHELL="$HOME/.zgen/chriskempson/base16-shell-master"
|
2019-05-05 23:24:22 +00:00
|
|
|
BASE16_SHELL_profile_helper="$BASE16_SHELL/profile_helper.sh"
|
|
|
|
[[ -n "$PS1" && -r "$BASE16_SHELL_profile_helper" ]] && eval "$("$BASE16_SHELL_profile_helper")"
|
2019-01-04 22:00:27 +00:00
|
|
|
|
2019-03-08 18:10:30 +00:00
|
|
|
welcome
|