You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We can simply add them to dotbot's default configurations to prevent duplication. Like the following: -
- defaults:
shell:
stdout: truestderr: true
What if one of them is different?
If want to override these configurations at some point, say i.e., turn off stderr for a specific shell command (let's say setup_node script), we can simply add the same configuration as we used to do. When dotbot sees this it will turn off stderr when running setup_node.
- command: ./setup_node.zshstderr: false
The text was updated successfully, but these errors were encountered:
yasinmiran
added a commit
to yasinmiran/dotfiles_macos
that referenced
this issue
May 30, 2021
Describe the suggestion
Currently, we repeat the dotbot's shell configs in every instruction.
dotfiles_macos/install.conf.yaml
Lines 21 to 33 in b8d9db1
Describe the improvement
We can simply add them to dotbot's default configurations to prevent duplication. Like the following: -
What if one of them is different?
If want to override these configurations at some point, say i.e., turn off
stderr
for a specific shell command (let's saysetup_node
script), we can simply add the same configuration as we used to do. When dotbot sees this it will turn offstderr
when runningsetup_node
.The text was updated successfully, but these errors were encountered: