2025-12-09 17:48:28 +09:00
|
|
|
/**
|
|
|
|
|
* Plugin configuration for Claude Code hooks execution
|
|
|
|
|
* Contains settings for hook command execution (zsh, etc.)
|
|
|
|
|
*/
|
|
|
|
|
|
2025-12-16 01:02:49 +09:00
|
|
|
const isWindows = process.platform === "win32"
|
|
|
|
|
|
2025-12-09 17:48:28 +09:00
|
|
|
export const DEFAULT_CONFIG = {
|
2025-12-16 01:02:49 +09:00
|
|
|
// Windows doesn't have zsh by default, so we disable forceZsh on Windows
|
|
|
|
|
forceZsh: !isWindows,
|
2025-12-09 17:48:28 +09:00
|
|
|
zshPath: "/bin/zsh",
|
|
|
|
|
}
|