From 9a7d94b8ff974b229aee86f1143881bbb8fd37e2 Mon Sep 17 00:00:00 2001 From: PinkLea Date: Mon, 27 May 2024 21:10:51 +0700 Subject: [PATCH] feat(tree-sitter): update `@type.builtin` and `@keyword.modifier` colors (#87) --- lua/one_monokai/themes/groups.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lua/one_monokai/themes/groups.lua b/lua/one_monokai/themes/groups.lua index 860ad89..2914306 100644 --- a/lua/one_monokai/themes/groups.lua +++ b/lua/one_monokai/themes/groups.lua @@ -115,7 +115,7 @@ local defaults = { ["@number.float"] = { link = "Float" }, ["@type"] = { link = "Type" }, - ["@type.builtin"] = { link = "Type" }, + ["@type.builtin"] = { fg = colors.pink }, ["@type.definition"] = { link = "Typedef" }, ["@attribute"] = { link = "Type" }, @@ -139,7 +139,7 @@ local defaults = { ["@keyword.operator"] = { link = "Operator" }, ["@keyword.import"] = { link = "Include" }, ["@keyword.type"] = { link = "Type" }, - ["@keyword.modifier"] = { link = "Type" }, + ["@keyword.modifier"] = { fg = colors.pink }, ["@keyword.repeat"] = { link = "Repeat" }, ["@keyword.return"] = { fg = colors.pink }, ["@keyword.debug"] = { link = "Debug" },