mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-06-21 16:39:06 +02:00
fix(fzf-lua): move register_select to lazy init
This commit is contained in:
parent
6202dd1644
commit
33e1da585d
1 changed files with 3 additions and 2 deletions
|
@ -190,12 +190,13 @@ return {
|
||||||
end,
|
end,
|
||||||
config = function(_, opts)
|
config = function(_, opts)
|
||||||
require("fzf-lua").setup(opts)
|
require("fzf-lua").setup(opts)
|
||||||
require("fzf-lua").register_ui_select(opts.ui_select or nil)
|
|
||||||
end,
|
end,
|
||||||
init = function()
|
init = function()
|
||||||
LazyVim.on_very_lazy(function()
|
LazyVim.on_very_lazy(function()
|
||||||
vim.ui.select = function(...)
|
vim.ui.select = function(...)
|
||||||
require("fzf-lua")
|
require("lazy").load({ plugins = { "fzf-lua" } })
|
||||||
|
local opts = LazyVim.opts("fzf-lua") or {}
|
||||||
|
require("fzf-lua").register_ui_select(opts.ui_select or nil)
|
||||||
return vim.ui.select(...)
|
return vim.ui.select(...)
|
||||||
end
|
end
|
||||||
end)
|
end)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue