feat: Add nvim-dap-ui highlight groups (#87)

This commit is contained in:
Will Leinweber 2022-07-16 20:08:57 -07:00 committed by GitHub
commit 006aac9d67
2 changed files with 22 additions and 0 deletions

View file

@ -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

View file

@ -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)