diff options
| author | K <[email protected]> | 2025-07-14 10:07:31 +0530 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-07-14 04:37:31 +0000 |
| commit | 3110e8f81049f24549cacbbdc85ab08fa4128ed4 (patch) | |
| tree | c830179c3d145681aa87ff27e35f1b74f1eb7fc0 /docs/cli/configuration.md | |
| parent | 8d0a4082a44403a7ed3f5d920b7b420a2cf72237 (diff) | |
feat(cli): add hideBanner setting to disable startup banner (#2803)
Co-authored-by: Pascal Birchler <[email protected]>
Diffstat (limited to 'docs/cli/configuration.md')
| -rw-r--r-- | docs/cli/configuration.md | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/docs/cli/configuration.md b/docs/cli/configuration.md index d175aa4f..f200c5df 100644 --- a/docs/cli/configuration.md +++ b/docs/cli/configuration.md @@ -189,6 +189,15 @@ In addition to a project settings file, a project's `.gemini` directory can cont "hideTips": true ``` +- **`hideBanner`** (boolean): + - **Description:** Enables or disables the startup banner (ASCII art logo) in the CLI interface. + - **Default:** `false` + - **Example:** + + ```json + "hideBanner": true + ``` + - **`maxSessionTurns`** (number): - **Description:** Sets the maximum number of turns for a session. If the session exceeds this limit, the CLI will stop processing and start a new chat. - **Default:** `-1` (unlimited) @@ -222,6 +231,7 @@ In addition to a project settings file, a project's `.gemini` directory can cont }, "usageStatisticsEnabled": true, "hideTips": false, + "hideBanner": false, "maxSessionTurns": 10 } ``` |
