Skip to content

vibe config

The config command displays the current effective configuration.

Terminal window
vibe config

Shows the merged configuration from .vibe.toml and .vibe.local.toml:

Terminal window
$ vibe config
Copy:
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'"]

Check that your configuration is set up correctly before creating a worktree:

Terminal window
vibe config
vibe start feat/new-feature

See how .vibe.toml and .vibe.local.toml are merged:

Terminal window
# Check merged result
vibe config
# Compare with individual files
cat .vibe.toml
cat .vibe.local.toml