fix(semantic_tokens): reset comment type (#354)

Linking `@lsp.type.comment` to `Comment` or `@comment` makes TODO
comments a bit harder to read.
This commit is contained in:
Fitrah
2023-04-18 21:16:43 +08:00
committed by GitHub
parent d5f09fb2bb
commit 3d2f79cd1f

View File

@@ -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) },