My config.toml sits in a git repo that I version control. But every new project that I create adds to the very same config file, preventing sharing of the config in a team setting or even just across machines.
Example:
[post-create]
graft = "~/.config/worktrunk/scripts/graft.py {{ worktree_path }} --remote-url '{{ remote_url }}' --branch '{{ branch }}'"
#
# ⚠️ This should not be here! I cannot share this with others as a result.
#
[projects]
[projects."github.com/tenzir/docs"]
approved-commands = [
"bun install",
]
Can we have a separate, system-local file for the projects?
My
config.tomlsits in a git repo that I version control. But every new project that I create adds to the very same config file, preventing sharing of the config in a team setting or even just across machines.Example:
Can we have a separate, system-local file for the projects?