From cedd621625d9669272c14f663100e5ed30819bec Mon Sep 17 00:00:00 2001
From: Milos Stojanovic <alcalbg@gmail.com>
Date: Wed, 13 Jan 2021 10:37:08 +0100
Subject: [PATCH] docs for filter_entries

---
 docs/configuration/basic.md | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/docs/configuration/basic.md b/docs/configuration/basic.md
index d0e62fa..b44606a 100644
--- a/docs/configuration/basic.md
+++ b/docs/configuration/basic.md
@@ -24,6 +24,12 @@ Note: if you've made a mistake in configuration file (forgot to close a quote?)
         'editable' => ['.txt', '.css', '.js', '.ts', '.html', '.php', '.json', '.md'],
         'date_format' => 'YY/MM/DD hh:mm:ss', // see: https://momentjs.com/docs/#/displaying/format/
         'guest_redirection' => '', // useful for external auth adapters
+
+        // filter starts with separator => full path has to match, example: '/all/one/filegator/demo.txt'
+        // filter ends with separator => filter only folders (a file with the same name will be shown), example: '.git/'
+        // neither of above => it is a file and could be in every folder, example: '.htaccess'
+        // both of above => full folder path has to match, example: '/homes/web/filegator/.npm/'
+        'filter_entries' => ['Recycle.bin/', 'File System Information/', '.DS_Store', '@eaDir/', '#recycle/'],
     ],
 ```