Add fff.nvim and replace snacks file picker with it
This commit is contained in:
parent
de289309f7
commit
e3cb974b12
4 changed files with 229 additions and 1 deletions
14
nvim/lua/plugs/fff.lua
Normal file
14
nvim/lua/plugs/fff.lua
Normal 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',
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue