1
0
mirror of https://github.com/deadc0de6/dotdrop.git synced 2026-02-10 01:09:15 +00:00

Document ignore-missing

This commit is contained in:
Marcel Robitaille
2021-02-08 13:29:46 -05:00
parent 147b805049
commit 86f6f26a98
2 changed files with 38 additions and 1 deletions

View File

@@ -645,3 +645,21 @@ dotfiles:
trans_read: r_echo_var
trans_write: w_echo_var
```
## Ignoring missing files
The [ignore missing files setting](./usage/#ignoring-missing-files)
can be configured globally or on a specific dotfile.
To configure globally, place the following in `config.yaml`:
```yaml
config:
ignore_missing_in_dotdrop: True
```
To configure per dotfile:
```yaml
dotfiles:
f_abc:
ignore_missing_in_dotdrop: True
```