vibe config
The config command displays the current effective configuration.
vibe configOutput
Section titled “Output”Shows the merged configuration from .vibe.toml and .vibe.local.toml:
$ vibe configCopy: files: [".env", ".env.local"] dirs: ["node_modules", ".cache"]
Hooks: pre_start: ["echo 'Starting'"] post_start: ["pnpm install", "pnpm build"] pre_clean: ["git stash"] post_clean: ["echo 'Done'"]Use Cases
Section titled “Use Cases”Verify Configuration
Section titled “Verify Configuration”Check that your configuration is set up correctly before creating a worktree:
vibe configvibe start feat/new-featureDebug Merging
Section titled “Debug Merging”See how .vibe.toml and .vibe.local.toml are merged:
# Check merged resultvibe config
# Compare with individual filescat .vibe.tomlcat .vibe.local.tomlRelated
Section titled “Related”- Configuration - How to configure vibe
- .vibe.local.toml - Local overrides