diff options
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 } ``` |
