blob: c715183af87d7d6594d74b0e4361f281c4d1a9c3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
for config_file (~/.zsh/*.zsh) source $config_file
export EDITOR=vim
if [ -e $HOME/.zshrc-local ]; then
source $HOME/.zshrc-local
fi
# run after local because local because user bin should
# take absolute priority
export PATH=$HOME/bin:$PATH
# override builtin functions (preexec, precmd, etc.)
source ~/.zsh/functions.zsh-overrides
|