1
0
mirror of https://github.com/deadc0de6/dotdrop.git synced 2026-02-07 01:20:40 +00:00

Add documentation for the "negative ignore pattern" feature

This commit is contained in:
Joey Territo
2020-12-28 21:59:42 -05:00
parent ccd3133ebd
commit 6d5955b0a5
2 changed files with 19 additions and 1 deletions

View File

@@ -169,6 +169,12 @@ Make sure to quote those when using wildcards in the config file.
Patterns used on a specific dotfile can be specified relative to the dotfile destination (`dst`).
Similar to a `.gitignore` file, you can prefix ignore patterns with an exclamation point (`!`).
This so-called "negative ignore pattern" will cause any files that match that pattern to __not__ be ignored,
provided they *would have* been ignored by an earlier ignore pattern (dotdrop will warn if that is not the
case). This feature allows you to, for example, ignore all files within a certain directory, except for one
particular one (see example below).
```yaml
config:
cmpignore:
@@ -216,3 +222,14 @@ config:
- "testdir"
...
```
To ignore all files within a certain directory relative to `dst`, except one called `custom_plugin.zsh`:
```yaml
dotfiles:
d_zsh:
src: zsh
dst: ~/.config/zsh
impignore:
- "plugins/*"
- "!plugins/custom_plugin.zsh"
```