.dotfiles/nvim/lua/plugs/fff.lua

16 lines
496 B
Lua

return {
"dmtrKovalenko/fff.nvim",
build = function()
-- this will download prebuild binary or try to use existing rustup toolchain to build from source
-- (if you are using lazy you can use gb for rebuilding a plugin if needed)
require("fff.download").download_or_build_binary()
end,
lazy = false,
keys = {
{
"<leader>f",
function() require("fff").find_files() end,
desc = "FFFind files",
}
}
}