plugins.telescope.extensions.zoxide.enable

Whether to enable the zoxide telescope extension.

Type: boolean

Default: false

Example: true

Declared by:

plugins.telescope.extensions.zoxide.package

The zoxide package to use.

Type: package

Default: pkgs.vimPlugins.telescope-zoxide

Declared by:

plugins.telescope.extensions.zoxide.settings

settings for the zoxide telescope extension.

Type: attribute set of anything

Default: { }

Example:

{
  mappings = {
    "<C-b>" = {
      action = {
        __raw = ''
          function(selection)
            file_browser.file_browser({ cwd = selection.path })
          end
        '';
      };
      keepinsert = true;
    };
  };
  prompt_title = "Zoxide Folder List";
}

Declared by: