VS Code extension for mise
mise is a development environment setup tool that manages your project's tools, runtimes, environment variables, and tasks all in one place.
- 🔍 Automatic detection of mise tasks
- ⚡ Run tasks directly from:
mise.toml
files or file tasks- Command palette
- Mise sidebar
- Arguments are supported!
- 📝 View task definitions
- ➕ Create new file tasks
- 🧰 View all mise tools (python, node, jq, etc.) in the sidebar
- 📍 Quick navigation to tool definitions
- 📱 Show tools which are not installed or active
- 📦 Install/Remove/Use tools directly from the sidebar
- 🔧 Configure extensions to use tools from
mise
(list of supported extensions)
- 🌍 View mise environment variables
- 📝 Snippets to create tasks in
mise.toml
and task files
This extension lets VSCode tasks use mise
tasks. You can use mise
tasks in your launch.json
file.
Example launch.json
file:
{
"version": "2.0.0",
"tasks": [
{
"type": "mise",
"task": "build-my-app",
"label": "Build my app",
"watch": true
}
]
}
See the VSCode task integration wiki page for more information.
See Getting Started
- Found a bug? Please open an issue
- Contributions are welcome! See CONTRIBUTING.md for more information.
This extension is licensed under the MIT License. See the LICENSE file for details.