feat(nvim): improve inlay hint startup

Rust analyzer seems to be one of the few lsp servers which needs a
small timeout for inlay hints to show up correctly. All other servers
get their inlay hints activated without delay.
dev-docs
Moritz Böhme 2023-08-12 08:05:05 +02:00
parent d6b95fdef6
commit 403d88f161
Signed by: moritz
GPG Key ID: 970C6E89EB0547A9
1 changed files with 8 additions and 1 deletions

View File

@ -107,9 +107,13 @@ local on_attach_def = function(client, bufnr)
}, { buffer = bufnr, silent = true })
if client.server_capabilities.inlayHintProvider then
local slow_lsp_servers = {
"rust_analyzer",
}
local timeout = vim.tbl_contains(slow_lsp_servers, client.name, {}) and 500 or 0
vim.defer_fn(function()
vim.lsp.inlay_hint(bufnr, true)
end, 1000)
end, timeout)
end
end
@ -173,6 +177,9 @@ lspconfig_setup("lua_ls", {
format = {
enable = false,
},
hint = {
enable = true,
},
},
},
})