|
1 | 1 | > _This wiki is automatically published from [ohmyzsh/wiki](https://github.com/ohmyzsh/wiki). To edit this page,_
|
2 | 2 | > _go to [ohmyzsh/wiki](https://github.com/ohmyzsh/wiki), make your changes and submit a Pull Request._
|
3 | 3 |
|
4 |
| -# Settings |
| 4 | +# Settings <!-- omit in toc --> |
5 | 5 |
|
6 | 6 | > **NOTE: unless specified otherwise, these variables need to be declared _before_ Oh My Zsh is sourced in your `.zshrc` file.**
|
7 | 7 |
|
| 8 | +<!-- TOC generated with https://marketplace.visualstudio.com/items?itemName=yzhang.markdown-all-in-one --> |
8 | 9 | <!-- TOC depthfrom:2 -->
|
9 | 10 |
|
10 | 11 | - [Main settings](#main-settings)
|
|
16 | 17 | - [Update settings](#update-settings)
|
17 | 18 | - [`':omz:update' mode`](#omzupdate-mode)
|
18 | 19 | - [`':omz:update' frequency`](#omzupdate-frequency)
|
| 20 | + - [`':omz:update' verbosity`](#omzupdate-verbosity) |
19 | 21 | - [Deprecated settings](#deprecated-settings)
|
20 | 22 | - [Completion settings](#completion-settings)
|
21 | 23 | - [`ZSH_COMPDUMP`](#zsh_compdump)
|
@@ -135,6 +137,28 @@ setting only takes effect when automatic updates are enabled. **The default are
|
135 | 137 | zstyle ':omz:update' frequency 7
|
136 | 138 | ```
|
137 | 139 |
|
| 140 | +### `':omz:update' verbosity` |
| 141 | + |
| 142 | +This setting controls the amount of information displayed after an update finishes. These are the available verbosity levels: |
| 143 | + |
| 144 | +1. `default`: shows everything: git update process, changelog and success message. |
| 145 | + |
| 146 | + ```zsh |
| 147 | + zstyle ':omz:update' verbosity default |
| 148 | + ``` |
| 149 | + |
| 150 | +2. `minimal`: shows only the git update process and a minimal success message. |
| 151 | + |
| 152 | + ```zsh |
| 153 | + zstyle ':omz:update' verbosity minimal |
| 154 | + ``` |
| 155 | + |
| 156 | +3. `silent`: only shows the git update process. |
| 157 | + |
| 158 | + ```zsh |
| 159 | + zstyle ':omz:update' verbosity silent |
| 160 | + ``` |
| 161 | + |
138 | 162 | ### Deprecated settings
|
139 | 163 |
|
140 | 164 | These settings are still supported but will be removed in a future version of Oh My Zsh.
|
|
0 commit comments