fzf-lua extension that provides handy functionality about plugins installed via lazy.nvim.
{ 'ibhagwan/fzf-lua', dependencies = 'roginfarrer/fzf-lua-lazy' }require('fzf-lua-lazy').search()Setup is not required, but the configuration can extend the following defaults:
require('fzf-lua-lazy').setup({
mappings = {
open_readme = "default", -- i.e., Enter
open_in_browser = "ctrl-o",
open_in_find_files = "ctrl-f",
open_in_live_grep = "ctrl-g",
open_lazy_root_find_files = "ctrl-alt-f",
open_lazy_root_live_grep = "ctrl-alt-g",
change_cwd_to_plugin = "ctrl-alt-d",
},
})This plugin was forked from telescope-lazy.nvim which provides similar functionality for Telescope.