Skip to content

Commit

Permalink
feat(semantic_tokens): link lsp comments, e.g. conditional C ifdefs t…
Browse files Browse the repository at this point in the history
…hat won't evaluate (#334)
  • Loading branch information
amaanq committed Mar 14, 2023
1 parent 27203d7 commit b233a3c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lua/tokyonight/theme.lua
Original file line number Diff line number Diff line change
Expand Up @@ -254,9 +254,10 @@ function M.setup()
["@namespace"] = { link = "Include" },

-- LSP Semantic Token Groups
["@lsp.type.comment"] = { link = "@comment" },
["@lsp.type.enum"] = { link = "@type" },
["@lsp.type.keyword"] = { link = "@keyword" },
["@lsp.type.interface"] = { link = "Identifier" },
["@lsp.type.keyword"] = { link = "@keyword" },
["@lsp.type.namespace"] = { link = "@namespace" },
["@lsp.type.parameter"] = { link = "@parameter" },
["@lsp.type.property"] = { link = "@property" },
Expand Down

0 comments on commit b233a3c

Please sign in to comment.