docs/cli/plugins/install.md
mise plugins installmise plugins install [FLAGS] [NEW_PLUGIN] [GIT_URL]i, a, addsrc/cli/plugins/install.rsInstall a plugin
note that mise automatically can install plugins when you install a tool
e.g.: mise install [email protected] will autoinstall the cmake plugin
This behavior can be modified in ~/.config/mise/config.toml
[NEW_PLUGIN]The name of the plugin to install
e.g.: cmake, poetry
Can specify multiple plugins: mise plugins install cmake poetry
[GIT_URL]The git url of the plugin
-a --allInstall all missing plugins This will only install plugins that have matching shorthands. i.e.: they don't need the full git repo url
-f --forceReinstall even if plugin exists
-j --jobs <JOBS>Number of jobs to run in parallel
-v --verbose…Show installation output
Examples:
# install the poetry via shorthand
$ mise plugins install poetry
# install the poetry plugin using a specific git url
$ mise plugins install poetry https://github.com/mise-plugins/mise-poetry.git
# install the poetry plugin using the git url only
# (poetry is inferred from the url)
$ mise plugins install https://github.com/mise-plugins/mise-poetry.git
# install the poetry plugin using a specific ref
$ mise plugins install poetry https://github.com/mise-plugins/mise-poetry.git#11d0c1e