fixed color for text highlight

This commit is contained in:
Oliver Hartmann 2022-09-28 13:45:33 +02:00
parent 7e31d668ee
commit 74e6cc3bb4

View File

@ -79,13 +79,13 @@ local on_attach = function(client, bufnr)
-- Set autocommands conditional on server_capabilities
if client.server_capabilities.documentHighlightProvider then
local colors = require('gruvbox.palette')
vim.api.nvim_set_hl(
0,
"LspReferenceText",
{ bold = true,
ctermbg = 'red',
bg = 'DarkOrange',
fg = 'black' }
bg = colors.dark3 }
)
vim.api.nvim_set_hl(
0,