disable inlay hints

This commit is contained in:
2026-06-22 00:06:58 +02:00
parent 940ad024fb
commit 5e3c8f19bf

View File

@@ -39,10 +39,6 @@ vim.api.nvim_create_autocmd("LspAttach", {
vim.lsp.completion.enable(true, client.id, ev.buf, { vim.lsp.completion.enable(true, client.id, ev.buf, {
autotrigger = true, autotrigger = true,
}) })
if client:supports_method("textDocument/inlayHint") then
vim.lsp.inlay_hint.enable(true, { bufnr = ev.buf })
end
end, end,
}) })