From d139425947bdb65c2388b427e2e3e2a5067677dc Mon Sep 17 00:00:00 2001 From: Oliver Hartmann Date: Sun, 28 Apr 2024 23:53:33 +0200 Subject: [PATCH] Fixed LspReferenceText fg colors --- lua/plugins/bamboo.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lua/plugins/bamboo.lua b/lua/plugins/bamboo.lua index 6dab736..5318d61 100644 --- a/lua/plugins/bamboo.lua +++ b/lua/plugins/bamboo.lua @@ -23,9 +23,9 @@ return { ['@lsp.typemod.parameter.readonly'] = { fmt = 'bold', fg = 'NONE' }, ['@lsp.typemod.method.defaultLibrary.cpp'] = { fg = 'NONE' }, ['@function.builtin'] = { fg = 'NONE' }, - ['LspReferenceRead'] = { bg = colors.vulgaris.green, fg = colors.vulgaris.black }, - ['LspReferenceWrite'] = { bg = colors.vulgaris.red , fg = colors.vulgaris.bg1 }, - ['LspReferenceText'] = { bg = colors.vulgaris.cyan, fg = colors.vulgaris.bg1 }, + ['LspReferenceRead'] = { bg = colors.vulgaris.green, fg = colors.vulgaris.bg1, fmt = 'nocombine' }, + ['LspReferenceWrite'] = { bg = colors.vulgaris.red, fg = colors.vulgaris.bg1, fmt = 'nocombine' }, + ['LspReferenceText'] = { bg = colors.vulgaris.cyan, fg = colors.vulgaris.bg1, fmt = 'nocombine' }, ['Delimiter'] = { fg = colors.vulgaris.fg }, }, }