From ce4a7ef05e91b4a26f1a260e6e0628645c0d43cc Mon Sep 17 00:00:00 2001 From: Oliver Hartmann Date: Wed, 7 Feb 2024 09:06:14 +0100 Subject: [PATCH] fixed some colors in bamboo for lsp --- lua/plugins/bamboo.lua | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lua/plugins/bamboo.lua b/lua/plugins/bamboo.lua index e0d7886..b64d1ae 100644 --- a/lua/plugins/bamboo.lua +++ b/lua/plugins/bamboo.lua @@ -7,7 +7,9 @@ return { dim_inactive = true, -- Dim inactive windows/buffers cmp_itemkind_reverse = true, highlights = { - ['@lsp.mod.readonly'] = { fmt = 'bold' }, + ['@lsp.type.parameter'] = { fg = 'red' }, + ['@lsp.mod.readonly'] = { fmt = 'bold', fg = 'NONE' }, + ['@lsp.typemod.parameter.readonly'] = { fmt = 'bold', fg = 'NONE' }, }, } require('bamboo').load()