Skip to content

Commit 0140c94

Browse files
committed
Document update verbosity settings
1 parent c677d7e commit 0140c94

File tree

1 file changed

+25
-1
lines changed

1 file changed

+25
-1
lines changed

Settings.md

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
> _This wiki is automatically published from [ohmyzsh/wiki](https://github.com/ohmyzsh/wiki). To edit this page,_
22
> _go to [ohmyzsh/wiki](https://github.com/ohmyzsh/wiki), make your changes and submit a Pull Request._
33
4-
# Settings
4+
# Settings <!-- omit in toc -->
55

66
> **NOTE: unless specified otherwise, these variables need to be declared _before_ Oh My Zsh is sourced in your `.zshrc` file.**
77
8+
<!-- TOC generated with https://marketplace.visualstudio.com/items?itemName=yzhang.markdown-all-in-one -->
89
<!-- TOC depthfrom:2 -->
910

1011
- [Main settings](#main-settings)
@@ -16,6 +17,7 @@
1617
- [Update settings](#update-settings)
1718
- [`':omz:update' mode`](#omzupdate-mode)
1819
- [`':omz:update' frequency`](#omzupdate-frequency)
20+
- [`':omz:update' verbosity`](#omzupdate-verbosity)
1921
- [Deprecated settings](#deprecated-settings)
2022
- [Completion settings](#completion-settings)
2123
- [`ZSH_COMPDUMP`](#zsh_compdump)
@@ -135,6 +137,28 @@ setting only takes effect when automatic updates are enabled. **The default are
135137
zstyle ':omz:update' frequency 7
136138
```
137139

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+
138162
### Deprecated settings
139163

140164
These settings are still supported but will be removed in a future version of Oh My Zsh.

0 commit comments

Comments
 (0)