From 006aac9d673389975868fb5391e6bd247a7d7445 Mon Sep 17 00:00:00 2001 From: Will Leinweber Date: Sat, 16 Jul 2022 20:08:57 -0700 Subject: [PATCH] feat: Add nvim-dap-ui highlight groups (#87) --- lua/rose-pine/theme.lua | 21 +++++++++++++++++++++ readme.md | 1 + 2 files changed, 22 insertions(+) diff --git a/lua/rose-pine/theme.lua b/lua/rose-pine/theme.lua index 82c29d7..34493b7 100644 --- a/lua/rose-pine/theme.lua +++ b/lua/rose-pine/theme.lua @@ -433,6 +433,27 @@ function M.get(config) NotifyERRORBorder = { fg = p.love }, NotifyERRORTitle = { link = 'NotifyERRORBorder' }, NotifyERRORIcon = { link = 'NotifyERRORBorder' }, + + -- rcarriga/nvim-dap-ui + DapUIVariable = { link = 'Normal' }, + DapUIValue = { link = 'Normal' }, + DapUIFrameName = { link = 'Normal' }, + DapUIThread = { fg = p.gold }, + DapUIWatchesValue = { link = 'DapUIThread' }, + DapUIBreakpointsInfo = { link = 'DapUIThread' }, + DapUIBreakpointsCurrentLine = { fg = p.gold, style = 'bold' }, + DapUIWatchesEmpty = { fg = p.love }, + DapUIWatchesError = { link = 'DapUIWatchesEmpty' }, + DapUIBreakpointsDisabledLine = { fg = p.muted }, + DapUISource = { fg = p.iris }, + DapUIBreakpointsPath = { fg = p.foam }, + DapUIScope = { link = 'DapUIBreakpointsPath' }, + DapUILineNumber = { link = 'DapUIBreakpointsPath' }, + DapUIBreakpointsLine = { link = 'DapUIBreakpointsPath' }, + DapUIFloatBorder = { link = 'DapUIBreakpointsPath' }, + DapUIStoppedThread = { link = 'DapUIBreakpointsPath' }, + DapUIDecoration = { link = 'DapUIBreakpointsPath' }, + DapUIModifiedValue = { fg = p.foam, style = 'bold' }, } vim.g.terminal_color_0 = p.overlay -- black diff --git a/readme.md b/readme.md index a896d02..9f824c1 100644 --- a/readme.md +++ b/readme.md @@ -100,3 +100,4 @@ We welcome and appreciate any help in creating a lovely experience for all. - [Get highlight groups under cursor](https://github.com/nvim-treesitter/playground#show-treesitter-and-syntax-highlight-groups-under-the-cursor) - [Adding new highlight groups](https://github.com/rose-pine/neovim/issues/6#issuecomment-962466323) +- [Palette reference by name](https://rosepinetheme.com/palette)