docs/cli/config/set.md
mise config setmise config set [-f --file <FILE>] [-t --type <TYPE>] <KEY> [VALUE]src/cli/config/set.rsSet the value of a setting in a mise.toml file
<KEY>The path of the config to display
[VALUE]The value to set the key to (optional if provided as KEY=VALUE)
-f --file <FILE>The path to the mise.toml file to edit
If not provided, the nearest mise.toml file will be used
-t --type <TYPE>Choices:
inferstringintegerfloatboollistsetDefault: infer
Examples:
$ mise config set tools.python 3.12
$ mise config set settings.always_keep_download true
$ mise config set env.TEST_ENV_VAR ABC
$ mise config set settings.disable_tools --type list node,rust
# Type for `settings` is inferred
$ mise config set settings.jobs 4