`.mise.toml`などの設定ファイルを作成してから、グローバルフラグ (`-g` or `--global`) をつけずに`use`コマンドを実行する。
```console
mise use node@20
```
`.mise.toml`の有無による違いは以下の通り。`~/.config/mise/config.toml`はグローバルであり、`~/tmp/.mise.toml`はカレントディレクトリになる。
```console
$ ~/tmp
❯ node --version
v22.5.1
$ ~/tmp
❯ mise use node@20
mise ~/.config/mise/config.toml tools:
[email protected]
$ ~/tmp
❯ touch .mise.toml
$ ~/tmp
❯ mise use node@20
mise ~/tmp/.mise.toml tools:
[email protected]
```
設定や優先度は[公式ドキュメント](https://mise.jdx.dev/configuration.html#mise-toml)を参照。