mirror of
https://github.com/rose-pine/neovim.git
synced 2025-10-15 12:38:53 +02:00
style(lspsaga): rearrange diagnostic highlights
Rearrange `DiagnosticInformation` and `DiagnosticWarning` to their respective spots
This commit is contained in:
parent
77ee7657eb
commit
fbc31eb998
1 changed files with 2 additions and 3 deletions
|
|
@ -176,7 +176,9 @@ local theme = {
|
||||||
|
|
||||||
DiagnosticHint = { fg = config.colors.hint },
|
DiagnosticHint = { fg = config.colors.hint },
|
||||||
DiagnosticInfo = { fg = config.colors.info },
|
DiagnosticInfo = { fg = config.colors.info },
|
||||||
|
DiagnosticInformation = { link = 'DiagnosticInfo' },
|
||||||
DiagnosticWarn = { fg = config.colors.warn },
|
DiagnosticWarn = { fg = config.colors.warn },
|
||||||
|
DiagnosticWarning = { link = 'DiagnosticWarn' },
|
||||||
DiagnosticError = { fg = config.colors.error },
|
DiagnosticError = { fg = config.colors.error },
|
||||||
DiagnosticDefaultHint = { fg = config.colors.hint },
|
DiagnosticDefaultHint = { fg = config.colors.hint },
|
||||||
DiagnosticDefaultInfo = { fg = config.colors.info },
|
DiagnosticDefaultInfo = { fg = config.colors.info },
|
||||||
|
|
@ -413,9 +415,6 @@ local theme = {
|
||||||
|
|
||||||
-- LspSaga
|
-- LspSaga
|
||||||
-- https://github.com/tami5/lspsaga.nvim (fork of https://github.com/glepnir/lspsaga.nvim)
|
-- https://github.com/tami5/lspsaga.nvim (fork of https://github.com/glepnir/lspsaga.nvim)
|
||||||
DiagnosticInformation = { link = 'DiagnosticInfo' },
|
|
||||||
DiagnosticWarning = { link = 'DiagnosticWarn' },
|
|
||||||
|
|
||||||
LspSagaCodeActionTitle = {
|
LspSagaCodeActionTitle = {
|
||||||
fg = p.rose,
|
fg = p.rose,
|
||||||
style = 'bold',
|
style = 'bold',
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue