From 7f3b86ae0a0aa1c3f7bf6049e70036ba5acf8320 Mon Sep 17 00:00:00 2001 From: zootedb0t <05kraken@proton.me> Date: Sat, 23 Dec 2023 14:51:05 +0530 Subject: [PATCH] update `Number` highlight --- lua/citruszest/highlights/init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/citruszest/highlights/init.lua b/lua/citruszest/highlights/init.lua index d159065..ed05abb 100644 --- a/lua/citruszest/highlights/init.lua +++ b/lua/citruszest/highlights/init.lua @@ -66,7 +66,7 @@ M.theme = function(C, O) Constant = { fg = C.turquoise_blue }, -- (preferred) any constant String = { fg = C.aurora }, -- a string constant: "this is a string" Character = { fg = C.yellow }, -- a character constant: 'c', '\n' - Number = { fg = C.bright_blue }, -- a number constant: 234, 0xff + Number = { fg = C.lemon_yellow }, -- a number constant: 234, 0xff Float = { link = "Number" }, -- a floating point constant: 2.3e10 Boolean = { fg = C.orange }, -- a boolean constant: TRUE, false Identifier = { fg = C.turquoise_blue, italic = O.italic }, -- (preferred) any variable name