diff --git a/docs-preview-559/options.html b/docs-preview-559/options.html index 2b5fa607..8b88536f 100644 --- a/docs-preview-559/options.html +++ b/docs-preview-559/options.html @@ -28098,7 +28098,9 @@ boolean
TODO
+Individual extension configurations containing name, packages and setup
+fields to resolve dependencies, handle load_extension
calls and add the setup
+table into the extensions
portion of Telescope’s setup table.
Type: list of attribute set of (submodule)
@@ -28106,6 +28108,16 @@ list of attribute set of (submodule)Default:
[ ]
Example:
[
+ {
+ name = "fzf";
+ packages = [pkgs.vimPlugins.telescope-fzf-native-nvim];
+ setup = {fzf = {fuzzy = true;};};
+ }
+]
+
+
+
Declared by:
@@ -28151,6 +28163,37 @@ list of (string or package)
Type: string +Declared by: +
vim.telescope.extensions.*.<name>.setup
+
+
+Named attribute set to be inserted into Telescope’s extensions table. + +Type: +attribute set of anything + +Default:
+ Example:
+
Declared by:
|