style(lspsaga): rearrange diagnostic highlights

Rearrange `DiagnosticInformation` and `DiagnosticWarning` to their respective spots
This commit is contained in:
Samuel K 2021-12-17 10:00:59 +01:00
commit fbc31eb998

View file

@ -176,7 +176,9 @@ local theme = {
DiagnosticHint = { fg = config.colors.hint },
DiagnosticInfo = { fg = config.colors.info },
DiagnosticInformation = { link = 'DiagnosticInfo' },
DiagnosticWarn = { fg = config.colors.warn },
DiagnosticWarning = { link = 'DiagnosticWarn' },
DiagnosticError = { fg = config.colors.error },
DiagnosticDefaultHint = { fg = config.colors.hint },
DiagnosticDefaultInfo = { fg = config.colors.info },
@ -413,9 +415,6 @@ local theme = {
-- LspSaga
-- https://github.com/tami5/lspsaga.nvim (fork of https://github.com/glepnir/lspsaga.nvim)
DiagnosticInformation = { link = 'DiagnosticInfo' },
DiagnosticWarning = { link = 'DiagnosticWarn' },
LspSagaCodeActionTitle = {
fg = p.rose,
style = 'bold',