Files
configs/neovim/lua/plugins/fzf-lua.lua
Luis Freixial be6a2fab10 backup neovim
2025-07-15 16:15:41 +01:00

11 lines
322 B
Lua

return {
-- Fuzzy finder plugin
"ibhagwan/fzf-lua",
-- optional, since lazy.nvim loads dependencies automatically
dependencies = { "nvim-tree/nvim-web-devicons" },
config = function()
-- The setup function is optional, and can be omitted to use the default settings
require("fzf-lua").setup({})
end,
}