From b8c5cfd00534f93d61b145bee54818036960bedf Mon Sep 17 00:00:00 2001 From: Michael Chris Lopez Date: Sun, 12 Sep 2021 12:07:54 +0800 Subject: [PATCH] separate highlight for Number and Boolean --- lua/zenbones/init.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lua/zenbones/init.lua b/lua/zenbones/init.lua index 9a1a974..49659fb 100644 --- a/lua/zenbones/init.lua +++ b/lua/zenbones/init.lua @@ -117,8 +117,8 @@ local theme = lush(function() Constant { fg = c.stone.li(24), gui = "italic" }, -- (preferred) any constant -- String { }, -- a string constant: "this is a string" -- Character { }, -- a character constant: 'c', '\n' - -- Number { }, -- a number constant: 234, 0xff - -- Boolean { }, -- a boolean constant: TRUE, false + Number { gui = "italic" }, -- a number constant: 234, 0xff + Boolean { Number }, -- a boolean constant: TRUE, false -- Float { }, -- a floating point constant: 2.3e10 Identifier { fg = c.stone.li(16) }, -- (preferred) any variable name