From 2610be6f10f5a95ecdca65f5810f19d0105482d0 Mon Sep 17 00:00:00 2001 From: Michael Chris Lopez Date: Fri, 15 Oct 2021 15:09:44 +0800 Subject: [PATCH] breaking: more controlled colors for forestbones red is too strong for me personally --- lua/forestbones/init.lua | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lua/forestbones/init.lua b/lua/forestbones/init.lua index fc71782..0288d0e 100644 --- a/lua/forestbones/init.lua +++ b/lua/forestbones/init.lua @@ -7,8 +7,9 @@ local specs = generator.generate(p, bg, generator.get_global_config("forestbones return lush.extends({ specs }).with(function() return { - Statement { fg = p.rose }, - Special { fg = p.leaf }, + Statement { fg = p.leaf, gui = "bold" }, + PreProc { fg = p.rose }, + Operator { fg = p.rose }, Type { fg = p.water }, } end)