| name | mise-config-settings |
| description | This skill should be used when the user asks to "configure mise settings", "change mise config", "format mise.toml", "trust a config file", "set up IDE integration for mise", or mentions mise config, mise settings, mise fmt, mise trust, mise.local.toml, or IDE/editor integration with mise.
|
Mise Configuration & Settings
Manage mise configuration files, settings, formatting, trust, and IDE integration.
Config Management
mise config ls
mise config get tools.node
mise config set tools.node 22
mise fmt
mise trust
mise trust --all
Settings
mise settings
mise settings set KEY VALUE
mise settings unset KEY
Key Settings
| Setting | Purpose | Example |
|---|
experimental | Enable experimental features | true |
not_found_auto_install | Auto-install missing tools | true |
npm.package_manager | npm backend uses bun/npm | "bun" |
python.uv_venv_auto | Auto-create venv with uv | true |
status.missing_tools | Warning behavior | "if_other_versions_installed" |
env_cache | Cache computed environment | true |
Config File Hierarchy
~/.config/mise/config.toml — global (chezmoi-managed)
.mise.toml — project-level
mise.local.toml — local overrides (gitignored)
mise.<ENV>.toml — environment-specific
Higher-numbered files override lower-numbered ones.
Trust System
Mise requires explicit trust for config files that set env vars or run tasks:
mise trust
mise trust /path/to/mise.toml
mise trust --all
IDE Integration
VSCode
Install the mise-vscode extension. Add to ~/.zprofile:
eval "$(mise activate zsh --shims)"
JetBrains
Install intellij-mise plugin. Workaround for tool detection:
ln -s ~/.local/share/mise ~/.asdf
Neovim
Use shims in PATH for LSP servers to find mise-managed tools.
Formatting
mise fmt
mise fmt --check
Anti-Patterns
- Never edit
~/.config/mise/config.toml directly if chezmoi-managed
- Use
mise.local.toml for machine-specific overrides, not editing .mise.toml
- Shims cannot load arbitrary
[env] vars — only tool PATHs
- Changing mise.toml in IDE does not reload env vars in running IDE