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
Supported extensions
List of extensions that can be configured to use tools from mise
.
Extensions are automatically configured to use mise shims
. You can disable this feature in the settings.
If you want to configure it manually, search for Mise: Configure extension sdk path...
in the command palette.
If you want to add one, you can open a PR that updates src/utils/supportedExtensions.ts
- 🌍 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
}
]
}
Supported parameters for mise tasks
task
: The mise task to executewatch
: Re-run the task when files changeprofile
: The mise profile to use (optional, will use the default profile if not provided)glob
: Glob pattern to watch for changes. Defaults to sources from the tasksrunArgs
: Arguments to pass to the task. Not used when watch is truewatchexecArgs
: Arguments to pass to watchexec. (example: --clear) | use watchexec --help for more information
- Install the extension from VS Code Marketplace or Open VSX
- Open a project with a
mise.toml
file - Access mise features through:
- The sidebar icon
terminal
icon in the activity bar (usually on the left) - Command palette (
Ctrl/Cmd + Shift + P
). Search forRun Mise Task
orOpen Tool definition
orOpen Mise Task definition
- The status bar at the bottom of the window
- The sidebar icon
- 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.