Skip to content

Commit

Permalink
Add diagnostic colors
Browse files Browse the repository at this point in the history
  • Loading branch information
Matsuuu committed Jun 5, 2024
1 parent f783e55 commit b661c0d
Showing 1 changed file with 15 additions and 6 deletions.
21 changes: 15 additions & 6 deletions colors/pinkmare.vim
Original file line number Diff line number Diff line change
Expand Up @@ -1764,12 +1764,6 @@ endif
"
"
"
" Neovim binds: {{{

call s:HL('NormalFloat', s:palette.fg, s:palette.bg3)
call s:HL('FloatBorder', s:palette.fg, s:palette.bg3)

" }}}

" Treesitter_binds: {{{

Expand Down Expand Up @@ -1927,6 +1921,21 @@ call s:HL('CmpItemKindUnit', s:palette.cyan, s:palette.none)

call s:HL("CmpItemKindClass", s:palette.yellow, s:palette.none)
call s:HL('CmpItemKindField', s:palette.orange, s:palette.none)
" }}}
"
" Neovim binds: {{{

call s:HL('NormalFloat', s:palette.fg, s:palette.bg3)
call s:HL('DiagnosticFloatingHint', s:palette.gold, s:palette.bg3)
call s:HL('DiagnosticFloatingInfo', s:palette.purple, s:palette.bg3)
call s:HL('DiagnosticFloatingWarn', s:palette.yellow, s:palette.bg3)
call s:HL('DiagnosticFloatingError', s:palette.red, s:palette.bg3)
call s:HL('FloatBorder', s:palette.fg, s:palette.bg3)
call s:HL('DiagnosticVirtualTextHint', s:palette.gold, s:palette.none)
call s:HL('DiagnosticVirtualTextInfo', s:palette.purple, s:palette.none)
call s:HL('DiagnosticVirtualTextWarn', s:palette.yellow, s:palette.none)
call s:HL('DiagnosticVirtualTextError', s:palette.red, s:palette.none)

" }}}

"vim: set sw=2 ts=2 sts=2 et tw=80 ft=vim fdm=marker fmr={{{,}}}:

0 comments on commit b661c0d

Please sign in to comment.