mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-12 23:54:59 +00:00
renamed config/options and get_md_help()
This commit is contained in:
parent
53deb04e75
commit
30f4a905c1
5 changed files with 426 additions and 416 deletions
33
website/docs/config.md
Normal file
33
website/docs/config.md
Normal file
|
@ -0,0 +1,33 @@
|
|||
---
|
||||
nav_order: 55
|
||||
has_children: true
|
||||
---
|
||||
|
||||
# Configuration
|
||||
|
||||
Aider has many options which can be set with
|
||||
command line switches.
|
||||
Most options can also be set in an `.aider.conf.yml` file
|
||||
which can be placed in your home directory or at the root of
|
||||
your git repo.
|
||||
Or via environment variables like `AIDER_xxx`,
|
||||
as noted in the [options reference](options.html).
|
||||
|
||||
Here are 3 equivalent ways of setting an option. First, via a command line switch:
|
||||
|
||||
```
|
||||
$ aider --dark-mode
|
||||
```
|
||||
|
||||
Or, via an env variable:
|
||||
|
||||
```
|
||||
export AIDER_DARK_MODE=true
|
||||
```
|
||||
|
||||
Or in the `.aider.conf.yml` file:
|
||||
|
||||
```yaml
|
||||
dark-mode: true
|
||||
```
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue