dotfiles/zsh/zshrc
2019-09-24 22:36:00 +03:00

16 lines
358 B
Bash
Executable file

#!/usr/bin/env zsh
ZSH_DOTFILES="${0:h}"
autoload -U colors && colors
for script in functions options path env aliases plugins completion zle prompt colorscheme; do
source "$ZSH_DOTFILES/$script.zsh"
done
# add colon after MANPATH so that it doesn't overwrite system MANPATH
MANPATH="$MANPATH:"
command_exists rbenv && eval "$(rbenv init -)"
welcome