Stupid question - zig-cache zig-out zig-pkg

Is it possible to move these to a new location? I want them to all go into repo/.zig or repo/tmp/zig or something to simplify my gitignore…

zig-out can be changed with the --prefix, -p flag. (since the default structure mimics most systems you can use this to install software!)
there are also more specific --prefix-lib-dir, --prefix-exe-dir and --prefix-include-dir

.zig-cache can be changed with --cache-dir, also --global-cache-dir if you ever want to change that.

Unfortunately it does not seem like you can change zig-pkg yet.