1
0
mirror of https://github.com/deadc0de6/dotdrop.git synced 2026-02-04 19:09:44 +00:00

improve doc for #358

This commit is contained in:
deadc0de6
2022-08-23 20:19:05 +02:00
parent b65da350d1
commit 9e171b15a6

17
docs/config-file.md vendored
View File

@@ -164,14 +164,17 @@ profiles:
It is possible to ignore specific patterns when using dotdrop.
* For [install](usage.md#install-dotfiles):
* Using `instignore` in the config file
* Using config block [instignore](config-config.md)
* Using dotfiles block [instignore](config-dotfiles.md)
* For [import](usage.md#import-dotfiles):
* Using `impignore` in the config file
* Using config block [impignore](config-config.md)
* For [compare](usage.md#compare-dotfiles):
* Using `cmpignore` in the config file
* Using config block [cmpignore](config-config.md)
* Using dotfiles block [cmpignore](config-dotfiles.md)
* Using the command line switch `-i`/`--ignore`
* For [update](usage.md#update-dotfiles):
* Using `upignore` in the config file
* Using config block [upignore](config-config.md)
* Using dotfiles block [upignore](config-dotfiles.md)
* Using the command line switch `-i`/`--ignore`
The ignore pattern must follow Unix shell-style wildcards, like, for example `*/path/to/file`.
@@ -185,6 +188,8 @@ config:
- '*/README.md'
instignore:
- '*/README.md'
impignore:
- '*/README.md'
...
dotfiles:
d_vim
@@ -193,6 +198,10 @@ dotfiles:
upignore:
- '*/undo-dir'
- '*/plugged'
instignore:
- '*/internal'
cmpignore:
- '*/ignore-me'
...
```