-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
23 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,65 +1,70 @@ | ||
# Mode: | ||
|
||
## Default chat mode. | ||
chat-mode: ask | ||
|
||
# Main model: | ||
|
||
## Use claude-3-5-sonnet model for the main chat | ||
## Use claude-3-5-sonnet model for the main chat. | ||
sonnet: true | ||
|
||
# Model settings: | ||
|
||
## Timeout in seconds for API calls | ||
## Timeout in seconds for API calls. | ||
timeout: 20 | ||
|
||
# Output settings: | ||
|
||
## Set the color for user input | ||
## Set the color for user input. | ||
user-input-color: '#d3869b' | ||
|
||
## Set the color for tool output | ||
## Set the color for tool output. | ||
tool-output-color: '#928374' | ||
|
||
## Set the color for tool error messages | ||
## Set the color for tool error messages. | ||
tool-error-color: '#fb4934' | ||
|
||
## Set the color for tool warning messages | ||
## Set the color for tool warning messages. | ||
tool-warning-color: '#fabd2f' | ||
|
||
## Set the color for assistant output | ||
## Set the color for assistant output. | ||
assistant-output-color: '#ebdbb2' | ||
|
||
## Set the color for the completion menu | ||
## Set the color for the completion menu. | ||
completion-menu-color: '#ebdbb2' | ||
|
||
## Set the background color for the completion menu | ||
## Set the background color for the completion menu. | ||
completion-menu-bg-color: '#3c3836' | ||
|
||
## Set the markdown code theme | ||
## Set the markdown code theme. | ||
code-theme: monokai | ||
|
||
## Show diffs when committing changes | ||
## Show diffs when committing changes. | ||
show-diffs: true | ||
|
||
# Git settings: | ||
|
||
## Enable/disable auto commit of LLM changes | ||
## Enable/disable auto commit of LLM changes. | ||
auto-commits: false | ||
|
||
## Attribute aider code changes in the git author name | ||
## Attribute aider code changes in the git author name. | ||
attribute-author: false | ||
|
||
## Attribute aider commits in the git committer name | ||
## Attribute aider commits in the git committer name. | ||
attribute-committer: false | ||
|
||
## Specify a custom prompt for generating commit messages | ||
## Specify a custom prompt for generating commit messages. | ||
commit-prompt: 'Provide a concise commit message, without a body or footer, that follows the conventional commits specification. The text should all be lowercase, unless it refers to code, files, or directories.' | ||
|
||
## Enable/disable watching files for ai coding comments | ||
## Enable/disable watching files for ai coding comments. | ||
watch-files: true | ||
|
||
# Analytics: | ||
|
||
## Enable/disable analytics for current session | ||
## Enable/disable analytics for current session. | ||
analytics: false | ||
|
||
# Upgrading: | ||
|
||
## Check for new aider versions on launch | ||
## Check for new aider versions on launch. | ||
check-update: true |