From 3d2f79cd1f3cea7520d5cc4d06c8010fe2592db8 Mon Sep 17 00:00:00 2001 From: Fitrah <55179750+fitrh@users.noreply.github.com> Date: Tue, 18 Apr 2023 21:16:43 +0800 Subject: [PATCH] fix(semantic_tokens): reset comment type (#354) Linking `@lsp.type.comment` to `Comment` or `@comment` makes TODO comments a bit harder to read. --- lua/tokyonight/theme.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/tokyonight/theme.lua b/lua/tokyonight/theme.lua index 2978e95..f1dfc16 100644 --- a/lua/tokyonight/theme.lua +++ b/lua/tokyonight/theme.lua @@ -257,7 +257,7 @@ function M.setup() ["@namespace"] = { link = "Include" }, -- LSP Semantic Token Groups - ["@lsp.type.comment"] = { link = "@comment" }, + ["@lsp.type.comment"] = {}, ["@lsp.type.enum"] = { link = "@type" }, ["@lsp.type.enumMember"] = { link = "@constant" }, ["@lsp.type.interface"] = { fg = util.lighten(c.blue1, 0.7) },