-
Is it possible (or planned) to support full picker customization from inside For example, I'd love to write: pickers = {
{ "files", desc = "Files" },
{ "buffers", desc = "Bufs", prefix = "$", fzf_opts = { ["--nth"] = false, ["--with-nth"] = false }, win_opts= ... },
}, |
Beta Was this translation helpful? Give feedback.
Answered by
ibhagwan
Aug 6, 2025
Replies: 1 comment
-
It’s already possible, you can override the default fzf-lua/lua/fzf-lua/defaults.lua Line 374 in 4ee42b2 That said, you cannot change fzf_opts as these are global to fzf, that would required a special transform that modifies fzf’s state. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
sohanemon
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It’s already possible, you can override the default
pickers
and add whatever options you want, see the defaults:fzf-lua/lua/fzf-lua/defaults.lua
Line 374 in 4ee42b2
That said, you cannot change fzf_opts as these are global to fzf, that would required a special transform that modifies fzf’s state.