From 280dc6bdda171f8699fa80093781e4efa7d7d3ff Mon Sep 17 00:00:00 2001 From: nathan-wien Date: Wed, 16 Mar 2022 04:04:11 +1000 Subject: [PATCH] Add support for rcarriga/nvim-dap-ui --- colors/PaperColor.vim | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/colors/PaperColor.vim b/colors/PaperColor.vim index 81a1288..448c06e 100755 --- a/colors/PaperColor.vim +++ b/colors/PaperColor.vim @@ -1264,6 +1264,7 @@ fun! s:apply_syntax_highlightings() hi! link DiagnosticUnderlineWarn LspDiagnosticsUnderlineWarning hi! link DiagnosticUnderlineInfo LspDiagnosticsUnderlineInformation hi! link DiagnosticUnderlineHint LspDiagnosticsUnderlineHint + endif " Extension {{{ @@ -2247,6 +2248,35 @@ fun! s:apply_syntax_highlightings() exec 'hi CocInfoSign' . s:fg_todo_fg . s:bg_todo_bg . s:ft_bold exec 'hi CocHintSign' . s:fg_todo_fg . s:bg_todo_bg . s:ft_bold + " Debug Adapter Protocol (DAP) - Plugin: rcarriga/nvim-dap-ui + if has('nvim') + exec 'hi DapUIDecoration' . s:fg_blue + " DAP Scopes window + hi! link DapUIType Type + hi! link DapUIVariable Identifier + exec 'hi DapUIScope' . s:fg_red . s:ft_bold + hi! link DapUIValue Number + exec 'hi DapUIModifiedValue' . s:fg_orange . s:ft_bold . s:bg_error_bg + " DAP Breakpoints window + hi! link DapUILineNumber LineNr + hi! link DapUIBreakpointsDisabledLine LineNr + exec 'hi DapUIBreakpointsCurrentLine' . s:fg_linenumber_fg . s:ft_bold . s:bg_error_bg + exec 'hi DapUIBreakpointsInfo' . s:fg_green + exec 'hi DapUIBreakpointsPath' . s:fg_olive . s:ft_bold + " DAP Stacks window + exec 'hi DapUIFrameName' . s:fg_blue + exec 'hi DapUIThread' . s:fg_pink . s:ft_bold + exec 'hi DapUIStoppedThread' . s:fg_pink + " DAP Watches window + exec 'hi DapUIWatchesEmpty' . s:fg_pink . s:ft_bold + hi! link DapUIWatchesError DapUIWatchesEmpty + hi! link DapUIWatchesValue Number + " DAP Breakpoints window + exec 'hi DapUISource' . s:fg_olive + " DAP Floating window + exec 'hi DapUIFloatBorder' . s:fg_blue + endif + endfun " }}}