diff options
| author | Marcin Jahn <[email protected]> | 2025-06-30 01:56:37 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-06-29 23:56:37 +0000 |
| commit | d1eb86581ce800778e5a093039ce237ec6da6118 (patch) | |
| tree | 4ae636719beea4b0cfaa2a65e270d2f5968a61ff /docs/cli | |
| parent | 1732e90d52f26c03981eaefd28183b73dddfeccd (diff) | |
feat(cli): Add hideTips setting (#1524)
Co-authored-by: Allen Hutchison <[email protected]>
Diffstat (limited to 'docs/cli')
| -rw-r--r-- | docs/cli/configuration.md | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/docs/cli/configuration.md b/docs/cli/configuration.md index c866c01f..450d6ce8 100644 --- a/docs/cli/configuration.md +++ b/docs/cli/configuration.md @@ -176,6 +176,15 @@ In addition to a project settings file, a project's `.gemini` directory can cont "usageStatisticsEnabled": false ``` +- **`hideTips`** (boolean): + - **Description:** Enables or disables helpful tips in the CLI interface. + - **Default:** `false` + - **Example:** + + ```json + "hideTips": true + ``` + ### Example `settings.json`: ```json @@ -199,7 +208,8 @@ In addition to a project settings file, a project's `.gemini` directory can cont "otlpEndpoint": "http://localhost:4317", "logPrompts": true }, - "usageStatisticsEnabled": true + "usageStatisticsEnabled": true, + "hideTips": false } ``` |
