aboutsummaryrefslogtreecommitdiff
path: root/zsh/zshenv
blob: a25472a0dfee29aafe9a5b5d48502471da1c2882 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
# Add ~/bin to the path if it exists.
if [[ -d "$HOME/bin" ]]; then
    PATH="$HOME/bin:$PATH"
fi

# Add machine-specific local file if it exists.
if [[ -e "$HOME/.zshenv_local" ]]; then
    . "$HOME/.zshenv_local"
fi

# None of this UTF8 drawing characters nonsense.
export NCURSES_NO_UTF8_ACS=1