From 69b9c614f311572a5430b0c81007258f70d404f5 Mon Sep 17 00:00:00 2001 From: "Alexandre Cavalheiro S. Tiago da Silva" Date: Thu, 24 Apr 2025 14:32:37 -0300 Subject: [PATCH] fix(neovim): make blink.cmp signature help transparent Also stops overwriting the base groups from the plugin and instead flags the two groups we want to keep their background for. --- modules/neovim/lua/plugins/user.lua | 30 ++++------------------------- 1 file changed, 4 insertions(+), 26 deletions(-) diff --git a/modules/neovim/lua/plugins/user.lua b/modules/neovim/lua/plugins/user.lua index 9da5d9c..33b8f83 100644 --- a/modules/neovim/lua/plugins/user.lua +++ b/modules/neovim/lua/plugins/user.lua @@ -90,35 +90,13 @@ return { opts = function(_, opts) local transparent = require "transparent" - opts.groups = { - "Comment", - "Conditional", - "Constant", - "CursorLine", - "CursorLineNr", - "EndOfBuffer", - "Function", - "Identifier", - "LineNr", - "NonText", - "Normal", - "NormalNC", - "Operator", - "PreProc", - "Repeat", - "SignColumn", - "Special", - "Statement", - -- "StatusLine", - -- "StatusLineNC", - "String", - "Structure", - "Todo", - "Type", - "Underlined", + opts.exclude_groups = { + "StatusLine", + "StatusLineNC", } opts.extra_groups = { + "BlinkCmpSignatureHelpActiveParameter", "CursorColumn", "CursorLineFold", "CursorLineSign",