mirror of
https://github.com/keanuplayz/dotfiles.git
synced 2024-08-15 02:33:12 +00:00
16 lines
490 B
Bash
Executable file
16 lines
490 B
Bash
Executable file
#!/usr/bin/env zsh
|
|
|
|
ZSH_DOTFILES="${0:h}"
|
|
|
|
for script in functions path env plugins aliases palette theme; do
|
|
source "$ZSH_DOTFILES/$script.zsh"
|
|
source_if_exists "$ZSH_DOTFILES/custom/$script.zsh"
|
|
done
|
|
|
|
command_exists rbenv && eval "$(rbenv init -)"
|
|
|
|
export BASE16_SHELL="$HOME/.zgen/chriskempson/base16-shell-master"
|
|
BASE16_SHELL_profile_helper="$BASE16_SHELL/profile_helper.sh"
|
|
[[ -n "$PS1" && -r "$BASE16_SHELL_profile_helper" ]] && eval "$("$BASE16_SHELL_profile_helper")"
|
|
|
|
welcome
|