plugins.fzf-lua.settings

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

Type: attribute set of anything

Default: { }

Example:

{
  files = {
    color_icons = true;
    file_icons = true;
    find_opts = {
      __raw = "[[-type f -not -path '*.git/objects*' -not -path '*.env*']]";
    };
    multiprocess = true;
    prompt = "Files❯ ";
  };
  winopts = {
    col = 0.3;
    height = 0.4;
    row = 0.99;
    width = 0.93;
  };
}

Declared by:

plugins.fzf-lua.settings.fzf_bin

The path to the fzf binary to use.

Example: "skim"

Type: null or string or raw lua code

Default: null

Declared by: