docs/cli/settings.md
mise settingsmise settings [FLAGS] [SETTING] [VALUE] <SUBCOMMAND>src/cli/settings/mod.rsManage settings
[SETTING] — Name of setting[VALUE] — Setting value to set-l --local — Use the local config file instead of the global one-a --all — List all settings-J --json — Output in JSON format-T --toml — Output in TOML format--json-extended — Output in JSON format with sources-h --help — Print helpmise settings add [-l --local] <SETTING> [VALUE]mise settings get [-l --local] <SETTING>mise settings ls [FLAGS] [SETTING]mise settings set [-l --local] <SETTING> [VALUE]mise settings unset [-l --local] <KEY>Examples:
# list all settings
$ mise settings
# get the value of the setting "always_keep_download"
$ mise settings always_keep_download
# set the value of the setting "always_keep_download" to "true"
$ mise settings always_keep_download=true
# set the value of the setting "node.mirror_url" to "https://npmmirror.com/mirrors/node/"
$ mise settings node.mirror_url https://npmmirror.com/mirrors/node/