17 lines
367 B
Lua
17 lines
367 B
Lua
return {
|
|
"ibhagwan/fzf-lua",
|
|
-- optional for icon support
|
|
dependencies = { "nvim-tree/nvim-web-devicons" },
|
|
-- or if using mini.icons/mini.nvim
|
|
-- dependencies = { "echasnovski/mini.icons" },
|
|
opts = {},
|
|
config = function()
|
|
require("fzf-lua").setup({
|
|
fzf_bin = "sk",
|
|
grep = {
|
|
glob_flag = "--glob",
|
|
}
|
|
})
|
|
end,
|
|
}
|