summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorTJ DeVries <devries.timothyj@gmail.com>2020-10-30 18:31:06 -0400
committerTJ DeVries <devries.timothyj@gmail.com>2020-10-30 18:31:06 -0400
commita37e4699c42284c819f8487afacf55e5d0c8cccf (patch)
tree3ecdc8c08ef552d3cdf0ec73f60d0599a0345ca9 /README.md
parent656f316aee7f3eadb81549d0c0aeddca907cae38 (diff)
feat: Closes #205
Diffstat (limited to 'README.md')
-rw-r--r--README.md11
1 files changed, 11 insertions, 0 deletions
diff --git a/README.md b/README.md
index e0892e4..4a3580d 100644
--- a/README.md
+++ b/README.md
@@ -89,6 +89,17 @@ require('telescope').setup{
}
```
+### Default Configuration Keys
+
+
+- ( Missing configuration description for many items here, but I'm trying :smile: )
+- `file_ignore_patterns`:
+ - List of strings that are Lua patterns that, if any are matched, will make result be ignored.
+ - Please note, these are Lua patterns. See: [Lua Patterns](https://www.lua.org/pil/20.2.html)
+ - Example:
+ - `file_ignore_patterns = { "scratch/.*", "%.env" }`
+ - This will ignore anything in `scratch/` folders and any files named `.env`
+
## Examples
```vim