comparison vendor/vim-colors/PaperColor.vim @ 673:6cdd7d26260d

[vim] Update syntaxes and colors
author nanaya <me@nanaya.pro>
date Tue, 05 Apr 2022 13:55:06 +0900
parents f280738a90a6
children 17cacf387f7c
comparison
equal deleted inserted replaced
672:2febdacae5b4 673:6cdd7d26260d
1262 1262
1263 hi! link DiagnosticUnderlineError LspDiagnosticsUnderlineError 1263 hi! link DiagnosticUnderlineError LspDiagnosticsUnderlineError
1264 hi! link DiagnosticUnderlineWarn LspDiagnosticsUnderlineWarning 1264 hi! link DiagnosticUnderlineWarn LspDiagnosticsUnderlineWarning
1265 hi! link DiagnosticUnderlineInfo LspDiagnosticsUnderlineInformation 1265 hi! link DiagnosticUnderlineInfo LspDiagnosticsUnderlineInformation
1266 hi! link DiagnosticUnderlineHint LspDiagnosticsUnderlineHint 1266 hi! link DiagnosticUnderlineHint LspDiagnosticsUnderlineHint
1267
1267 endif 1268 endif
1268 1269
1269 " Extension {{{ 1270 " Extension {{{
1270 " VimL Highlighting 1271 " VimL Highlighting
1271 exec 'hi vimCommand' . s:fg_pink 1272 exec 'hi vimCommand' . s:fg_pink
2245 exec 'hi CocErrorSign' . s:fg_error_fg . s:bg_error_bg 2246 exec 'hi CocErrorSign' . s:fg_error_fg . s:bg_error_bg
2246 exec 'hi CocWarningSign' . s:fg_todo_fg . s:bg_todo_bg . s:ft_bold 2247 exec 'hi CocWarningSign' . s:fg_todo_fg . s:bg_todo_bg . s:ft_bold
2247 exec 'hi CocInfoSign' . s:fg_todo_fg . s:bg_todo_bg . s:ft_bold 2248 exec 'hi CocInfoSign' . s:fg_todo_fg . s:bg_todo_bg . s:ft_bold
2248 exec 'hi CocHintSign' . s:fg_todo_fg . s:bg_todo_bg . s:ft_bold 2249 exec 'hi CocHintSign' . s:fg_todo_fg . s:bg_todo_bg . s:ft_bold
2249 2250
2251 " Debug Adapter Protocol (DAP) - Plugin: rcarriga/nvim-dap-ui
2252 if has('nvim')
2253 exec 'hi DapUIDecoration' . s:fg_blue
2254 " DAP Scopes window
2255 hi! link DapUIType Type
2256 hi! link DapUIVariable Identifier
2257 exec 'hi DapUIScope' . s:fg_red . s:ft_bold
2258 hi! link DapUIValue Number
2259 exec 'hi DapUIModifiedValue' . s:fg_orange . s:ft_bold . s:bg_error_bg
2260 " DAP Breakpoints window
2261 hi! link DapUILineNumber LineNr
2262 hi! link DapUIBreakpointsDisabledLine LineNr
2263 exec 'hi DapUIBreakpointsCurrentLine' . s:fg_linenumber_fg . s:ft_bold . s:bg_error_bg
2264 exec 'hi DapUIBreakpointsInfo' . s:fg_green
2265 exec 'hi DapUIBreakpointsPath' . s:fg_olive . s:ft_bold
2266 " DAP Stacks window
2267 exec 'hi DapUIFrameName' . s:fg_blue
2268 exec 'hi DapUIThread' . s:fg_pink . s:ft_bold
2269 exec 'hi DapUIStoppedThread' . s:fg_pink
2270 " DAP Watches window
2271 exec 'hi DapUIWatchesEmpty' . s:fg_pink . s:ft_bold
2272 hi! link DapUIWatchesError DapUIWatchesEmpty
2273 hi! link DapUIWatchesValue Number
2274 " DAP Breakpoints window
2275 exec 'hi DapUISource' . s:fg_olive
2276 " DAP Floating window
2277 exec 'hi DapUIFloatBorder' . s:fg_blue
2278 endif
2279
2280 " Plugin: hrsh7th/nvim-cmp
2281 if has('nvim')
2282 hi! link CmpItemKindValue Number
2283 hi! link CmpItemKindVariable Identifier
2284 hi! link CmpItemKindKeyword Keyword
2285 hi! link CmpItemKindField CmpItemKindVariable
2286 exec 'hi CmpItemKindFunction' . s:fg_blue
2287 hi! link CmpItemKindMethod CmpItemKindFunction
2288 hi! link CmpItemKindConstructor CmpItemKindFunction
2289 hi! link CmpItemKindClass Structure
2290 hi! link CmpItemKindInterface Structure
2291 exec 'hi CmpItemKindSnippet' . s:fg_orange
2292 exec 'hi CmpItemKindFile' . s:fg_orange
2293 hi! link CmpItemKindFolder CmpItemKindFile
2294 exec 'hi CmpItemAbbrMatch' . s:fg_blue . s:ft_bold
2295 exec 'hi CmpItemAbbrMatchFuzzy' . s:fg_blue . s:ft_bold
2296 exec 'hi CmpItemAbbrDeprecated' . s:fg_foreground . ' gui=strikethrough'
2297 endif
2298
2250 endfun 2299 endfun
2251 " }}} 2300 " }}}
2252 2301
2253 " ================================== MISC ===================================== 2302 " ================================== MISC =====================================
2254 " Command to show theme information {{{ 2303 " Command to show theme information {{{