diff --git a/docs-preview-559/options.html b/docs-preview-559/options.html index 27054e5a..8c14f35c 100644 --- a/docs-preview-559/options.html +++ b/docs-preview-559/options.html @@ -37798,6 +37798,118 @@ boolean

Example: true

+

Declared by:

+ + +
+ +<nvf/modules/plugins/utility/telescope/telescope.nix> + +
+ +
+ + vim.telescope.extensions + + +
+
+

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 (submodule)

+ +

Default: +[ ]

+ +

Example:

[
+  {
+    name = "fzf";
+    packages = [pkgs.vimPlugins.telescope-fzf-native-nvim];
+    setup = {fzf = {fuzzy = true;};};
+  }
+]
+
+
+ +

Declared by:

+ + +
+ +<nvf/modules/plugins/utility/telescope/telescope.nix> + +
+
+
+ + vim.telescope.extensions.*.packages + + +
+
+

Package or packages providing the Telescope extension to be loaded.

+ +

Type: +list of (string or package)

+ +

Default: +[ ]

+ +

Declared by:

+ + +
+ +<nvf/modules/plugins/utility/telescope/telescope.nix> + +
+
+
+ + vim.telescope.extensions.*.name + + +
+
+

Name of the extension, will be used to load it with a require

+ +

Type: +string

+ +

Declared by:

+ + +
+ +<nvf/modules/plugins/utility/telescope/telescope.nix> + +
+
+
+ + vim.telescope.extensions.*.setup + + +
+
+

Named attribute set to be inserted into Telescope’s extensions table.

+ +

Type: +attribute set of anything

+ +

Default: +{ }

+ +

Example:

{
+  fzf = {
+    fuzzy = true;
+  };
+}
+
+

Declared by:

@@ -38319,12 +38431,15 @@ anything

-

Boolean if devicons should be enabled or not.

+

Whether to enable colored devicons.

Type: boolean

Default: +false

+ +

Example: true

Declared by:

@@ -38351,6 +38466,30 @@ string

Default: " "

+

Declared by:

+ + +
+ +<nvf/modules/plugins/utility/telescope/telescope.nix> + +
+
+
+ + vim.telescope.setupOpts.defaults.extensions + + +
+
+

Attribute set containing per-extension settings for Telescope

+ +

Type: +attribute set of anything

+ +

Default: +{ }

+

Declared by:

@@ -38367,7 +38506,7 @@ string

-

A table of lua regex that define the files that should be ignored.

+

File patterns to omit from Telescope results

Type: list of string

@@ -38423,7 +38562,7 @@ one of “insert”, “normal”

Determines the default configuration values for layout strategies. -See telescope.layout for details of the configurations options for +See telescope.layout for details of the configurations options for each strategy.

Type: @@ -38448,6 +38587,8 @@ submodule

+

How tall to make Telescope’s entire layout

+

Type: floating point number

@@ -38470,6 +38611,8 @@ floating point number

+

Change the width of Telescope’s preview window

+

Type: floating point number

@@ -38492,8 +38635,10 @@ floating point number

+

Where to place prompt window

+

Type: -string

+one of “top”, “bottom”

Default: "top"

@@ -38514,6 +38659,8 @@ string

+

When lines are less than this value, the preview will be disabled

+

Type: signed integer

@@ -38536,6 +38683,8 @@ signed integer

+

Flip the location of the results/prompt and preview windows

+

Type: boolean

@@ -38558,6 +38707,8 @@ boolean

+

How wide to make Telescope’s entire layout

+

Type: floating point number

@@ -38614,6 +38765,33 @@ list of (one of “hidden”, “tail”, “absolute”, “smart”, “shorte ] +

Declared by:

+ + +
+ +<nvf/modules/plugins/utility/telescope/telescope.nix> + +
+
+
+ + vim.telescope.setupOpts.defaults.pickers.find_command + + +
+
+

Command to use for finding files. If using an executable from PATH then you must +make sure that the package is available in vim.extraPackages.

+ +

Type: +(list of string) or (luaInline)

+ +

Default:

[
+  "\${pkgs.fd}/bin/fd"
+]
+
+

Declared by:

@@ -38787,7 +38965,7 @@ list of string

-

pseudo-transparency of keymap hints floating window

+

Pseudo-transparency of keymap hints floating window

Type: signed integer