mirror of
https://github.com/rose-pine/neovim.git
synced 2025-10-15 12:38:53 +02:00
feat: Add nvim-dap-ui highlight groups (#87)
This commit is contained in:
parent
04fa9d94a5
commit
006aac9d67
2 changed files with 22 additions and 0 deletions
|
|
@ -433,6 +433,27 @@ function M.get(config)
|
||||||
NotifyERRORBorder = { fg = p.love },
|
NotifyERRORBorder = { fg = p.love },
|
||||||
NotifyERRORTitle = { link = 'NotifyERRORBorder' },
|
NotifyERRORTitle = { link = 'NotifyERRORBorder' },
|
||||||
NotifyERRORIcon = { 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
|
vim.g.terminal_color_0 = p.overlay -- black
|
||||||
|
|
|
||||||
|
|
@ -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)
|
- [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)
|
- [Adding new highlight groups](https://github.com/rose-pine/neovim/issues/6#issuecomment-962466323)
|
||||||
|
- [Palette reference by name](https://rosepinetheme.com/palette)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue