aider/website/docs/options.md
Paul Gauthier 0e5342fdb8 copy
2024-06-06 11:01:27 -07:00

33 lines
605 B
Markdown

---
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_ref.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
```