diff --git a/typo3/sysext/indexed_search/Documentation/Configuration/FluidTemplating/Index.rst b/typo3/sysext/indexed_search/Documentation/Configuration/FluidTemplating/Index.rst
new file mode 100644
index 0000000000000000000000000000000000000000..4630d6bcffa60fd0ecf8b9ef3d90b9a3d91cf951
--- /dev/null
+++ b/typo3/sysext/indexed_search/Documentation/Configuration/FluidTemplating/Index.rst
@@ -0,0 +1,33 @@
+.. ==================================================
+.. FOR YOUR INFORMATION
+.. --------------------------------------------------
+.. -*- coding: utf-8 -*- with BOM.
+
+.. include:: ../../Includes.txt
+
+
+
+.. _configuration-fluidtemplating:
+
+Fluid Templating
+^^^^^^^^^^^^^^^^
+
+The plugin "Indexed Search (Extbase & Fluid based)" can be extended with custom templates:
+
+.. code-block:: typoscript
+
+   plugin.tx_indexedsearch.view {
+       templateRootPaths {
+           0 = EXT:indexed_search/Resources/Private/Templates/
+           1 = EXT:myextension/Resources/Private/Templates/
+       }
+
+       partialRootPaths {
+           0 = EXT:indexed_search/Resources/Private/Partials/
+           1 = EXT:myextension/Resources/Private/Partials/
+       }
+   }
+
+The above configuration will made the plugin look for any template in ``myextension`` first and
+fall back to the default ``indexed_search`` template if a template could not be found in
+``myextension``.
diff --git a/typo3/sysext/indexed_search/Documentation/Configuration/Index.rst b/typo3/sysext/indexed_search/Documentation/Configuration/Index.rst
index 444f0ec4b3176ee347ae809416e10fa99ed749aa..c77b3108c092db9fc5a5fe461e9931074612c585 100644
--- a/typo3/sysext/indexed_search/Documentation/Configuration/Index.rst
+++ b/typo3/sysext/indexed_search/Documentation/Configuration/Index.rst
@@ -20,4 +20,4 @@ Configuration
 
    General/Index
    TypoScript/Index
-
+   FluidTemplating/Index