mirror of
https://github.com/rose-pine/neovim.git
synced 2025-10-15 12:38:53 +02:00
feat: code actions and diagnostics hl-groups
Highlight groups for: - code actions - diagnostics
This commit is contained in:
parent
8c58d0d7e9
commit
3a8ed9da3d
1 changed files with 23 additions and 0 deletions
|
|
@ -428,6 +428,29 @@ local theme = {
|
|||
NeorgHeading6Title = { fg = config.colors.headings.h6, style = 'bold' },
|
||||
|
||||
NeorgMarkerTitle = { fg = p.text, style = 'bold' },
|
||||
-- LspSaga
|
||||
-- https://github.com/tami5/lspsaga.nvim (fork of https://github.com/glepnir/lspsaga.nvim)
|
||||
-- CodeActions
|
||||
LspSagaCodeActionTitle = {
|
||||
fg = p.gold,
|
||||
style = 'bold',
|
||||
},
|
||||
LspSagaCodeActionBorder = { fg = p.subtle },
|
||||
LspSagaCodeActionTruncateLine = { link = 'LspSagaCodeActionBorder' },
|
||||
LspSagaCodeActionContent = { fg = p.foam },
|
||||
|
||||
-- Diagnostics
|
||||
DiagnosticInformation = { link = 'DiagnosticInfo' },
|
||||
DiagnosticWarning = { link = 'DiagnosticWarn' },
|
||||
|
||||
-- DiagnosticPopUp
|
||||
LspSagaDiagnosticBorder = { fg = p.subtle },
|
||||
LspSagaDiagnosticHeader = {
|
||||
fg = p.gold,
|
||||
style = 'bold',
|
||||
},
|
||||
LspSagaDiagnosticTruncateLine = { link = 'LspSagaDiagnosticBorder' },
|
||||
|
||||
}
|
||||
|
||||
vim.g.terminal_color_0 = p.overlay -- black
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue