Skip to content

Compatibility with other plugins

Jose Alvarez edited this page Sep 2, 2022 · 4 revisions

By default, fzf-lua makes LSP requests asynchronously within an FZF popup, which causes issues for null-ls. It works perfectly with the following config option:

require("fzf-lua").setup({
    lsp = {
        -- make lsp requests synchronous so they work with null-ls
        async_or_timeout = 3000,
    },
})

See this comment.