ripgrep-all/doc/config.default.jsonc

19 lines
857 B
Plaintext
Raw Permalink Normal View History

2022-12-26 20:10:42 +00:00
{
// This file follows the JSON schema defined below.
// If you use an editor that supports JSON schema (e.g. VS Code),
// you should be getting IntelliSense and validation.
"$schema": "./config.v1.schema.json",
// The default config and schema will be regenerated if they are missing
// https://github.com/phiresky/ripgrep-all/blob/master/doc/config.default.jsonc
// The config options are the same as the command line options,
2023-05-25 14:15:49 +00:00
// but with --rga- prefix removed and - and . replaced with _.
2022-12-26 20:10:42 +00:00
// e.g. --rga-no-cache becomes `"no_cache": true.
// The only exception is the `custom_adapters` option, which can only be set in this file.
"custom_adapters": [
// See https://github.com/phiresky/ripgrep-all/wiki for more information
// to verify if your custom adapters are picked up correctly, run `rga --rga-list-adapters`
]
}