From fb38ee00715dce70fb8f939534f70b38c20249ca Mon Sep 17 00:00:00 2001 From: Niverton Date: Sat, 27 Jul 2024 13:38:00 +0200 Subject: [PATCH] fix(syntax): Fixed constants color in templates --- lua/astrobox/highlights/modules/syntax.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/lua/astrobox/highlights/modules/syntax.lua b/lua/astrobox/highlights/modules/syntax.lua index 5ef7864..9570a05 100644 --- a/lua/astrobox/highlights/modules/syntax.lua +++ b/lua/astrobox/highlights/modules/syntax.lua @@ -151,5 +151,6 @@ return function(theme, palette) ["@lsp.typemod.string.attribute"] = { link = "String" }, -- Hmmmm ["@lsp.typemod.variable.readonly"] = { link = "Constant" }, ["@lsp.typemod.const.constant"] = { link = "Constant" }, + ["@lsp.typemod.constParameter.constant"] = { link = "Constant" }, } end