Skip to content
This repository has been archived by the owner on Aug 12, 2023. It is now read-only.

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.