aboutsummaryrefslogtreecommitdiff
path: root/zshrc
blob: 6f4e111b23c2354f9658373357bb239e288ba95e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
export EDITOR=vim
export LANG=en_US.UTF-8

if [ -e "$HOME/.zshrc-local" ]; then
    source "$HOME/.zshrc-local"
fi

source "$HOME/.zsh/appearance.zsh"
source "$HOME/.zsh/behavior.zsh"
source "$HOME/.zsh/completion.zsh"
source "$HOME/.zsh/key-bindings.zsh"

# override builtin functions (preexec, precmd, etc.)
source "$HOME/.zsh/functions.zsh-overrides"

# user bin should take absolute priority
export PATH="$HOME/bin:$PATH"