summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xzshrc4
1 files changed, 4 insertions, 0 deletions
diff --git a/zshrc b/zshrc
index 8db2a50..bfc4107 100755
--- a/zshrc
+++ b/zshrc
@@ -6,6 +6,9 @@ if [[ -f $HOME/.zshrc.local ]]; then
source $HOME/.zshrc.local
fi
+# Don't upgrade oh-my-zsh automatically.
+DISABLE_AUTO_UPDATE="true"
+
source $HOME/dotfiles/zgen/zgen.zsh
# check if there's no init script
if ! zgen saved; then
@@ -54,6 +57,7 @@ alias diff=colordiff
export EDITOR=vim
export PAGER=less
export TZ='America/New_York'
+export PATH=$HOME/bin:$PATH
# allow editing of command line
autoload -U edit-command-line