telescope

URL: https://github.com/nvim-telescope/telescope.nvim/

Maintainers: Gaetan Lepage

plugins.telescope.enable

Whether to enable telescope.nvim.

Type: boolean

Default: false

Example: true

Declared by:

plugins.telescope.enabledExtensions

A list of enabled extensions.

You should only use this option directly if the Telescope extension you wish to enable is not natively supported by nixvim.

Most extensions are available as plugins.telescope.extensions.<name>.enable, although some plugins that do more than just provide Telescope extensions may use plugins.<name>.enableTelescope instead.

If you add an extension to this list manually, it is your responsibility to ensure the relevant plugin is also added to extraPackages.

Type: list of string

Default: [ ]

Declared by:

plugins.telescope.package

Which package to use for the telescope.nvim plugin.

Type: package

Default: <derivation vimplugin-lua5.1-telescope.nvim-scm-1-unstable-2024-06-09>

Declared by:

plugins.telescope.highlightTheme

The colorscheme to use for syntax highlighting

Type: null or string

Default: null

Declared by:

plugins.telescope.keymaps

Keymaps for telescope.

Type: attribute set of (string or (submodule))

Default: { }

Example:

{
  "<C-p>" = {
    action = "git_files";
    options = {
      desc = "Telescope Git Files";
    };
  };
  "<leader>fg" = "live_grep";
}

Declared by: