fix: use macro color for annotations

This commit is contained in:
əlemi 2023-05-04 01:18:34 +02:00
parent 1f39660946
commit 5c62f2bd20
Signed by: alemi
GPG key ID: A4895B84D311642C

View file

@ -166,6 +166,7 @@ function PALETTE:set_semantic_colors()
vim.api.nvim_set_hl(0, "@lsp.type.class", { link = "@storageclass" })
vim.api.nvim_set_hl(0, "@lsp.type.comment", { link = "@comment" })
vim.api.nvim_set_hl(0, "@lsp.type.decorator", { link = "@macro" })
vim.api.nvim_set_hl(0, "@lsp.type.annotation", { link = "@macro" })
vim.api.nvim_set_hl(0, "@lsp.type.enum", { link = "@structure" })
vim.api.nvim_set_hl(0, "@lsp.type.enumMember", {}) -- HIGHLIGHT(self.orange.bright, nil, {bold=true}))
vim.api.nvim_set_hl(0, "@lsp.type.function", { link = "@function" })