aboutsummaryrefslogtreecommitdiff
path: root/zshrc
blob: b12e67d9fd0b63394f1537fa8dacb2b775e82ecc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
for config_file (~/.zsh/*.zsh); do
    source $config_file
done

export EDITOR=vim
export LANG=en_US.UTF-8

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