From 5e3c8f19bf6358f000b5cac25db65e0979ab3031 Mon Sep 17 00:00:00 2001 From: Roman Date: Mon, 22 Jun 2026 00:06:58 +0200 Subject: [PATCH] disable inlay hints --- nvim/.config/nvim/lua/romanzy/plugins/lsp.lua | 4 ---- 1 file changed, 4 deletions(-) diff --git a/nvim/.config/nvim/lua/romanzy/plugins/lsp.lua b/nvim/.config/nvim/lua/romanzy/plugins/lsp.lua index 9996849..3a330c3 100644 --- a/nvim/.config/nvim/lua/romanzy/plugins/lsp.lua +++ b/nvim/.config/nvim/lua/romanzy/plugins/lsp.lua @@ -39,10 +39,6 @@ vim.api.nvim_create_autocmd("LspAttach", { vim.lsp.completion.enable(true, client.id, ev.buf, { autotrigger = true, }) - - if client:supports_method("textDocument/inlayHint") then - vim.lsp.inlay_hint.enable(true, { bufnr = ev.buf }) - end end, })