From af9c9447689e0ddbd2bc5137e89df0e892fbe0ba Mon Sep 17 00:00:00 2001 From: Roman Date: Fri, 3 Jul 2026 03:32:15 +0200 Subject: [PATCH] fix cmp blinking notifications --- nvim/.config/nvim/lua/romanzy/commands.lua | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/nvim/.config/nvim/lua/romanzy/commands.lua b/nvim/.config/nvim/lua/romanzy/commands.lua index f14aa79..7295847 100644 --- a/nvim/.config/nvim/lua/romanzy/commands.lua +++ b/nvim/.config/nvim/lua/romanzy/commands.lua @@ -12,13 +12,13 @@ ac("TextYankPost", { end, }) -ac("LspAttach", { - desc = "Notify user about attached LSP clients", - group = aug("LSPOnAttach", { clear = true }), - callback = function(event) - local client = vim.lsp.get_client_by_id(event.data.client_id) - if client then - vim.notify(client.name .. " attached", vim.log.levels.INFO, {}) - end - end, -}) +-- ac("LspAttach", { +-- desc = "Notify user about attached LSP clients", +-- group = aug("LSPOnAttach", { clear = true }), +-- callback = function(event) +-- local client = vim.lsp.get_client_by_id(event.data.client_id) +-- if client then +-- vim.notify(client.name .. " attached", vim.log.levels.INFO, {}) +-- end +-- end, +-- })