little bit overhaul here and there :))

This commit is contained in:
2026-03-21 15:55:58 +01:00
parent 37e4ba19f8
commit 650ef78405
19 changed files with 601 additions and 428 deletions

23
lua/plugins/fff.lua Normal file
View File

@@ -0,0 +1,23 @@
-- lua/plugins/extras/fff.lua
-- Fast fuzzy file finder with a native Rust binary
-- https://github.com/dmtrKovalenko/fff.nvim
return {
'dmtrKovalenko/fff.nvim',
lazy = false,
build = function()
require('fff.download').download_or_build_binary()
end,
opts = {
debug = { enabled = false, show_scores = false },
},
keys = {
{
'ff',
function()
require('fff').find_files()
end,
desc = 'FFFind files',
},
},
}