Skip to content

Commit

Permalink
fix: Re-add nvim-notify highlights (#72) (#72)
Browse files Browse the repository at this point in the history
  • Loading branch information
will authored Mar 10, 2022
1 parent 3de9dad commit 9758101
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions lua/rose-pine/theme.lua
Original file line number Diff line number Diff line change
Expand Up @@ -402,6 +402,23 @@ function M.get(config)
TelescopeSelection = { fg = p.text, bg = p.overlay },
TelescopeSelectionCaret = { fg = p.rose, bg = p.overlay },
TelescopeTitle = { fg = p.subtle },

-- rcarriga/nvim-notify
NotifyINFOBorder = { fg = p.foam },
NotifyINFOTitle = { link = 'NotifyINFOBorder' },
NotifyINFOIcon = { link = 'NotifyINFOBorder' },
NotifyWARNBorder = { fg = p.gold },
NotifyWARNTitle = { link = 'NotifyWARNBorder' },
NotifyWARNIcon = { link = 'NotifyWARNBorder' },
NotifyDEBUGBorder = { fg = p.muted },
NotifyDEBUGTitle = { link = 'NotifyDEBUGBorder' },
NotifyDEBUGIcon = { link = 'NotifyDEBUGBorder' },
NotifyTRACEBorder = { fg = p.iris },
NotifyTRACETitle = { link = 'NotifyTRACEBorder' },
NotifyTRACEIcon = { link = 'NotifyTRACEBorder' },
NotifyERRORBorder = { fg = p.love },
NotifyERRORTitle = { link = 'NotifyERRORBorder' },
NotifyERRORIcon = { link = 'NotifyERRORBorder' },
}

vim.g.terminal_color_0 = p.overlay -- black
Expand Down

0 comments on commit 9758101

Please sign in to comment.