Set colors for lsp diagnostics

Fixes a small issue with coloring when `diagnostics = "nvim_lsp"` is set to enhance color consistency.
navigator
Prescott Murphy 3 years ago committed by siduck76
parent a12455509b
commit 2cf3e2cac5

@ -64,6 +64,16 @@ bufferline.setup {
guifg = colors.light_grey, guifg = colors.light_grey,
guibg = colors.black2, guibg = colors.black2,
}, },
-- for diagnostics = "nvim_lsp"
error = {
guifg = colors.light_grey,
guibg = colors.black2,
},
error_diagnostic = {
guifg = colors.light_grey,
guibg = colors.black2
},
-- close buttons -- close buttons
close_button = { close_button = {

Loading…
Cancel
Save