set some lsp highlights

This commit is contained in:
Oliver Hartmann 2023-03-19 15:43:26 +01:00
parent 70a06005fe
commit 97c469b1ef

View File

@ -18,10 +18,13 @@ return {
['@lsp.type.macro'] = '@macro',
['@lsp.type.decorator'] = '@function',
}
local colors = require('gruvbox.palette').colors
for newgroup, oldgroup in pairs(links) do
vim.api.nvim_set_hl(0, newgroup, { link = oldgroup, default = true })
end
vim.api.nvim_set_hl(0, '@lsp.type.parameter', { fg = colors.faded_purple })
vim.api.nvim_set_hl(0, '@lsp.mod.readonly', { bold = true })
require('gruvbox').setup({
undercurl = true,
underline = true,