vibe config
configコマンドは現在有効な設定を表示します。
vibe config.vibe.tomlと.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'"]ユースケース
Section titled “ユースケース”Worktreeを作成する前に設定が正しくセットアップされているか確認:
vibe configvibe start feat/new-featureマージのデバッグ
Section titled “マージのデバッグ”.vibe.tomlと.vibe.local.tomlがどのようにマージされているか確認:
# マージ結果を確認vibe config
# 個別ファイルと比較cat .vibe.tomlcat .vibe.local.toml- 設定 - vibeの設定方法
- .vibe.local.toml - ローカル上書き