Fix lsp highlight group (#348)

* Fix: add `lsp.type.enumMember` hl group

* Fix: link the `@lsp.type.interface` to `@type`
This commit is contained in:
秋葉
2023-04-16 14:03:42 +08:00
committed by GitHub
parent 1b0c880945
commit 3bd262baf7

View File

@@ -256,7 +256,8 @@ function M.setup()
-- LSP Semantic Token Groups
["@lsp.type.comment"] = { link = "@comment" },
["@lsp.type.enum"] = { link = "@type" },
["@lsp.type.interface"] = { link = "Identifier" },
["@lsp.type.enumMember"] = { link = "@property" },
["@lsp.type.interface"] = { link = "@type" },
["@lsp.type.keyword"] = { link = "@keyword" },
["@lsp.type.namespace"] = { link = "@namespace" },
["@lsp.type.parameter"] = { link = "@parameter" },