diff options
author | Rob Freiburger <rob@robfreiburger.com> | 2017-02-18 04:31:36 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-18 04:31:36 -0600 |
commit | fbc878cb66cbe0067998034c2d2e383b2742c0de (patch) | |
tree | 21f822661c2da6abedf1281bba6a58aef821fd0f | |
parent | d2725d44fce59ea7060b4d712c5739512a56882d (diff) | |
download | zsh-fbc878cb66cbe0067998034c2d2e383b2742c0de.tar.gz zsh-fbc878cb66cbe0067998034c2d2e383b2742c0de.tar.bz2 zsh-fbc878cb66cbe0067998034c2d2e383b2742c0de.zip |
Adds option to disable auto update prompt
I noticed this option was missing from the template. When I followed the directions in README to enable it, I put it below line 59 without noticing it wouldn't have any effect by then. Prevent others from making a rookie mistake like mine.
-rw-r--r-- | templates/zshrc.zsh-template | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/templates/zshrc.zsh-template b/templates/zshrc.zsh-template index af42e5b9f..93bbf36aa 100644 --- a/templates/zshrc.zsh-template +++ b/templates/zshrc.zsh-template @@ -19,6 +19,9 @@ ZSH_THEME="robbyrussell" # Uncomment the following line to disable bi-weekly auto-update checks. # DISABLE_AUTO_UPDATE="true" +# Uncomment the following line to automatically update without prompting. +# DISABLE_UPDATE_PROMPT="true" + # Uncomment the following line to change how often to auto-update (in days). # export UPDATE_ZSH_DAYS=13 |