From 4e6fc21d4a5fdd70b5339507d3dbdbd53e30f65b Mon Sep 17 00:00:00 2001 From: Niverton Date: Sat, 27 Jul 2024 13:01:45 +0200 Subject: [PATCH] fix(syntax): constants are now const colored --- lua/astrobox/highlights/modules/syntax.lua | 1 + lua/astrobox/highlights/modules/vim-illuminate.lua | 0 2 files changed, 1 insertion(+) mode change 100755 => 100644 lua/astrobox/highlights/modules/vim-illuminate.lua diff --git a/lua/astrobox/highlights/modules/syntax.lua b/lua/astrobox/highlights/modules/syntax.lua index 74e0b01..28ce3d9 100644 --- a/lua/astrobox/highlights/modules/syntax.lua +++ b/lua/astrobox/highlights/modules/syntax.lua @@ -150,5 +150,6 @@ return function(theme, palette) ["@lsp.typemod.selfKeyword"] = theme.highlight_bold, ["@lsp.typemod.string.attribute"] = { link = "String" }, -- Hmmmm ["@lsp.typemod.variable.readonly"] = { link = "Constant" }, + ["@lsp.typemod.const.constant"] = { link = "Constant" }, } end diff --git a/lua/astrobox/highlights/modules/vim-illuminate.lua b/lua/astrobox/highlights/modules/vim-illuminate.lua old mode 100755 new mode 100644