dotfiles/zsh/zshrc

21 lines
536 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-09-11 15:08:00 +00:00
for script in functions path env plugins aliases zstyle zle prompt; do
source "$ZSH_DOTFILES/$script.zsh"
source_if_exists "$ZSH_DOTFILES/custom/$script.zsh"
2018-11-10 14:51:47 +00:00
done
2019-07-28 14:17:30 +00:00
# add colon after MANPATH so that it doesn't overwrite system MANPATH
MANPATH="$MANPATH:"
2019-05-05 23:24:22 +00:00
command_exists rbenv && eval "$(rbenv init -)"
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
setopt noclobber
2019-03-08 18:10:30 +00:00
welcome