Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for Neovim's Debug Adapter Protocol UI #181

Merged
merged 1 commit into from
Mar 17, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions colors/PaperColor.vim
Original file line number Diff line number Diff line change
Expand Up @@ -1264,6 +1264,7 @@ fun! s:apply_syntax_highlightings()
hi! link DiagnosticUnderlineWarn LspDiagnosticsUnderlineWarning
hi! link DiagnosticUnderlineInfo LspDiagnosticsUnderlineInformation
hi! link DiagnosticUnderlineHint LspDiagnosticsUnderlineHint

endif

" Extension {{{
Expand Down Expand Up @@ -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
" }}}

Expand Down