Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

claude-fzf

URL: https://github.com/pittcat/claude-fzf.nvim/

Maintainers: Austin Horstman


Fzf-lua pickers for adding files, buffers, and search results to claudecode.nvim’s context.

plugins.claude-fzf.enable

Whether to enable claude-fzf.

Type: boolean

Default:

false

Example:

true

Declared by:

plugins.claude-fzf.package

The claude-fzf package to use.

Type: package

Default:

pkgs.vimPlugins.claude-fzf-nvim

Declared by:

plugins.claude-fzf.autoLoad

Whether to automatically load claude-fzf when neovim starts.

Type: boolean

Default: false when lazy-loading is enabled.

Example:

false

Declared by:

plugins.claude-fzf.callSetup

Whether to generate the standard require('claude-fzf').setup(...) call for this plugin.

Explicitly set to false to disable calling .setup().

Type: boolean

Default:

true

Declared by:

plugins.claude-fzf.settings

Options provided to the require('claude-fzf').setup function.

Type: lua value

Default:

{ }

Example:

{
  batch_size = 10;
  keymaps = {
    files = "<leader>acF";
    grep = "<leader>acg";
    buffers = "<leader>acB";
    git_files = "<leader>acG";
    directory_files = "<leader>acD";
  };
  fzf_opts = {
    preview = {
      border = "rounded";
    };
    winopts = {
      width = 0.7;
    };
  };
}

Declared by: