From 3442de38f57409560f9e6d43a39fdd4bd50d7a8d Mon Sep 17 00:00:00 2001 From: Oliver Hartmann Date: Mon, 13 May 2024 20:28:15 +0200 Subject: [PATCH] some bamboo tuning --- lua/plugins/bamboo.lua | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lua/plugins/bamboo.lua b/lua/plugins/bamboo.lua index 2b485db..be312f0 100644 --- a/lua/plugins/bamboo.lua +++ b/lua/plugins/bamboo.lua @@ -7,8 +7,11 @@ return { require('bamboo').setup { dim_inactive = true, -- Dim inactive windows/buffers cmp_itemkind_reverse = true, + lualine = { + transparent = true, -- lualine center bar transparency + }, code_style = { - comments = { italic = true }, + comments = { italic = false }, conditionals = { italic = false }, keywords = {}, functions = {}, @@ -19,6 +22,7 @@ return { }, highlights = { ['@lsp.type.comment'] = { link = '@comment', default = true }, + ['@comment'] = { fg = colors.vulgaris.light_grey, default = true }, ['@lsp.type.parameter'] = { fg = colors.vulgaris.red }, ['@lsp.mod.readonly'] = { fmt = 'bold', fg = 'NONE' }, ['@lsp.typemod.parameter.readonly'] = { fmt = 'bold', fg = 'NONE' },