Add fff.nvim and replace snacks file picker with it

This commit is contained in:
Martin Larsson 2025-08-28 23:01:05 +02:00
parent de289309f7
commit e3cb974b12
4 changed files with 229 additions and 1 deletions

14
nvim/lua/plugs/fff.lua Normal file
View file

@ -0,0 +1,14 @@
return {
"dmtrKovalenko/fff.nvim",
build = "nix run .#release",
-- No need to lazy-load with lazy.nvim.
-- This plugin initializes itself lazily.
lazy = false,
keys = {
{
"ff", -- try it if you didn't it is a banger keybinding for a picker
function() require('fff').find_files() end,
desc = 'FFFind files',
}
}
}