zsh/env_template
Alexander Gehrke 346f509784 Remove 'source ...' lines from zshenv template
The "source" lines are unnecessary when setting $ZDOTDIR, which needs to be set
correctly for most modules anyway.
2013-03-22 13:49:31 +01:00

17 lines
346 B
Plaintext

export ZDOTDIR="$HOME/.zsh"
PROMPT_UNICODE=yes
zcpath="$ZDOTDIR"
# on foreign server I don't want to accidentaly alarm admins
sudo() {
echo "no root here";
}
su() {
echo "no root here";
}
# set modules to load. here: exclude highlight, because it is no fun over slow
# connections
ZMODLOAD_ONLY=( autoloader bindings completion vcs prompt )