mise plugin for vibe - A CLI tool for easy Git Worktree management.
Add to your .mise.toml:
[plugins]
vibe = "https://github.com/kexi/mise-vibe"
[tools]
vibe = "latest"Then run:
mise install# Install specific version
mise install [email protected]
# List available versions
mise ls-remote vibe
# Set global version
mise use -g vibe@latest
# Set local version (in current directory)
mise use [email protected]After installing vibe via mise, add the following to your shell configuration:
Zsh (.zshrc)
vibe() { eval "$(command vibe "$@")" }Bash (.bashrc)
vibe() { eval "$(command vibe "$@")"; }Fish (~/.config/fish/config.fish)
function vibe
eval (command vibe $argv)
end| OS | Architecture | Status |
|---|---|---|
| macOS | x64 (Intel) | Supported |
| macOS | arm64 (Apple Silicon) | Supported |
| Linux | x64 | Supported |
| Linux | arm64 | Supported |
| Windows | x64 | Supported |
Apache-2.0