mirror of
https://github.com/rose-pine/neovim.git
synced 2025-10-15 12:38:53 +02:00
feat: add snacks indent highlights (#334)
This commit is contained in:
parent
106f05aeab
commit
719ec67bf5
1 changed files with 11 additions and 5 deletions
|
|
@ -683,23 +683,23 @@ local function set_highlights()
|
||||||
|
|
||||||
-- rcarriga/nvim-notify
|
-- rcarriga/nvim-notify
|
||||||
NotifyBackground = { link = "NormalFloat" },
|
NotifyBackground = { link = "NormalFloat" },
|
||||||
NotifyDEBUGBody = { link = 'NormalFloat' },
|
NotifyDEBUGBody = { link = "NormalFloat" },
|
||||||
NotifyDEBUGBorder = make_border(),
|
NotifyDEBUGBorder = make_border(),
|
||||||
NotifyDEBUGIcon = { link = "NotifyDEBUGTitle" },
|
NotifyDEBUGIcon = { link = "NotifyDEBUGTitle" },
|
||||||
NotifyDEBUGTitle = { fg = palette.muted },
|
NotifyDEBUGTitle = { fg = palette.muted },
|
||||||
NotifyERRORBody = { link = 'NormalFloat' },
|
NotifyERRORBody = { link = "NormalFloat" },
|
||||||
NotifyERRORBorder = make_border(groups.error),
|
NotifyERRORBorder = make_border(groups.error),
|
||||||
NotifyERRORIcon = { link = "NotifyERRORTitle" },
|
NotifyERRORIcon = { link = "NotifyERRORTitle" },
|
||||||
NotifyERRORTitle = { fg = groups.error },
|
NotifyERRORTitle = { fg = groups.error },
|
||||||
NotifyINFOBody = { link = 'NormalFloat' },
|
NotifyINFOBody = { link = "NormalFloat" },
|
||||||
NotifyINFOBorder = make_border(groups.info),
|
NotifyINFOBorder = make_border(groups.info),
|
||||||
NotifyINFOIcon = { link = "NotifyINFOTitle" },
|
NotifyINFOIcon = { link = "NotifyINFOTitle" },
|
||||||
NotifyINFOTitle = { fg = groups.info },
|
NotifyINFOTitle = { fg = groups.info },
|
||||||
NotifyTRACEBody = { link = 'NormalFloat' },
|
NotifyTRACEBody = { link = "NormalFloat" },
|
||||||
NotifyTRACEBorder = make_border(palette.iris),
|
NotifyTRACEBorder = make_border(palette.iris),
|
||||||
NotifyTRACEIcon = { link = "NotifyTRACETitle" },
|
NotifyTRACEIcon = { link = "NotifyTRACETitle" },
|
||||||
NotifyTRACETitle = { fg = palette.iris },
|
NotifyTRACETitle = { fg = palette.iris },
|
||||||
NotifyWARNBody = { link = 'NormalFloat' },
|
NotifyWARNBody = { link = "NormalFloat" },
|
||||||
NotifyWARNBorder = make_border(groups.warn),
|
NotifyWARNBorder = make_border(groups.warn),
|
||||||
NotifyWARNIcon = { link = "NotifyWARNTitle" },
|
NotifyWARNIcon = { link = "NotifyWARNTitle" },
|
||||||
NotifyWARNTitle = { fg = groups.warn },
|
NotifyWARNTitle = { fg = groups.warn },
|
||||||
|
|
@ -1013,6 +1013,12 @@ local function set_highlights()
|
||||||
BlinkCmpKindCopilot = { fg = palette.foam },
|
BlinkCmpKindCopilot = { fg = palette.foam },
|
||||||
BlinkCmpKindSupermaven = { fg = palette.foam },
|
BlinkCmpKindSupermaven = { fg = palette.foam },
|
||||||
BlinkCmpKindTabNine = { fg = palette.foam },
|
BlinkCmpKindTabNine = { fg = palette.foam },
|
||||||
|
|
||||||
|
-- folke/snacks.nvim
|
||||||
|
SnacksIndent = { fg = palette.overlay },
|
||||||
|
SnacksIndentChunk = { fg = palette.overlay },
|
||||||
|
SnacksIndentBlank = { fg = palette.overlay },
|
||||||
|
SnacksIndentScope = { fg = palette.foam },
|
||||||
}
|
}
|
||||||
local transparency_highlights = {
|
local transparency_highlights = {
|
||||||
DiagnosticVirtualTextError = { fg = groups.error },
|
DiagnosticVirtualTextError = { fg = groups.error },
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue