Use `defaults.yaml` to provide fallback values
mainYou can define a defaults.yaml file in any folder within your repository. These files provide default values that are automatically applied to subdirectories when keys are missing from the local dot.yaml files. This allows you to define common configurations at a higher level in the directory tree and only override specific keys in nested dot.yaml files.
# Example: defaults.yaml in a parent directory
installs:
cmd: 'scoop install {{ name }}'
depends:
- 'scoop'
- 'extras'