fzf-lua

URL: https://github.com/ibhagwan/fzf-lua

Maintainers: Gaetan Lepage

plugins.fzf-lua.enable

Whether to enable fzf-lua.

Type: boolean

Default: false

Example: true

Declared by:

plugins.fzf-lua.package

The fzf-lua package to use.

Type: package

Default: pkgs.vimPlugins.fzf-lua

Declared by:

plugins.fzf-lua.autoLoad

Whether to automatically load fzf-lua when neovim starts.

Type: boolean

Default: false when lazy-loading is enabled.

Example: false

Declared by:

plugins.fzf-lua.fzfPackage

The fzf package to use.

Type: null or package

Default: pkgs.fzf

Example: pkgs.skim

Declared by:

plugins.fzf-lua.keymaps

Keymaps for Fzf-Lua.

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

Default: { }

Example:

{
  "<leader>fg" = "live_grep";
  "<C-p>" = {
    action = "git_files";
    settings = {
      previewers.cat.cmd = lib.getExe' pkgs.coreutils "cat";
      winopts.height = 0.5;
    };
    options = {
      silent = true;
      desc = "Fzf-Lua Git Files";
    };
  };
};

Declared by:

plugins.fzf-lua.profile

Preconfigured profile to use

Type: null or one of “default”, “fzf-native”, “fzf-tmux”, “fzf-vim”, “max-perf”, “telescope”, “skim” or raw lua code

Default: null

Plugin default: "default"

Declared by: