docs/cli/settings.md
mise settingsmise settings [FLAGS] [SETTING] [VALUE] <SUBCOMMAND>src/cli/settings/mod.rsShow current settings
This is the contents of ~/.config/mise/config.toml
Note that aliases are also stored in this file
but managed separately with mise tool-alias
[SETTING]Name of setting
[VALUE]Setting value to set
-l --localUse the local config file instead of the global one
-a --allList all settings
-J --jsonOutput in JSON format
-T --tomlOutput in TOML format
--json-extendedOutput in JSON format with sources
mise 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://npm.taobao.org/mirrors/node"
$ mise settings node.mirror_url https://npm.taobao.org/mirrors/node