Skip to content

Commit

Permalink
Set colors for lsp diagnostics
Browse files Browse the repository at this point in the history
Fixes a small issue with coloring when `diagnostics = "nvim_lsp"` is set to enhance color consistency.
  • Loading branch information
prurph authored and siduck76 committed Aug 31, 2021
1 parent a124555 commit 2cf3e2c
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions lua/plugins/configs/bufferline.lua
Expand Up @@ -64,6 +64,16 @@ bufferline.setup {
guifg = colors.light_grey,
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_button = {
Expand Down

0 comments on commit 2cf3e2c

Please sign in to comment.