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.
This commit is contained in:
Alexandre Cavalheiro S. Tiago da Silva 2025-04-24 14:32:37 -03:00
parent 7136209ba7
commit 69b9c614f3
Signed by: wizardlink
GPG key ID: A5767B54367CFBDF

View file

@ -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",