Skyler Grey | f066b51 | 2022-10-31 00:02:48 +0000 | [diff] [blame] | 1 | call g:Highlight("DiagnosticInfo", g:blue, g:transparent) |
| 2 | call g:Highlight("DiagnosticHint", g:blue, g:transparent) |
| 3 | call g:Highlight("DiagnosticWarn", g:yellow, g:transparent) |
| 4 | call g:Highlight("DiagnosticError", g:red, g:transparent) |
| 5 | |
Skyler Grey | fab867f | 2023-01-25 21:45:01 +0000 | [diff] [blame] | 6 | au ColorScheme onehalfdark highlight DiagnosticUnderlineError guisp=#e06c75 |
| 7 | au ColorScheme onehalfdark highlight DiagnosticUnderlineInfo guisp=#61afef |
| 8 | au ColorScheme onehalfdark highlight DiagnosticUnderlineHint guisp=#61afef |
| 9 | au ColorScheme onehalfdark highlight DiagnosticUnderlineWarn guisp=#e5c07b |
Skyler Grey | f066b51 | 2022-10-31 00:02:48 +0000 | [diff] [blame] | 10 | |
| 11 | call g:Highlight("CocPumMenu", g:transparent, g:black) |
| 12 | call g:Highlight("CocFloating", g:transparent, g:black) |
| 13 | call g:Highlight("CocSearch", g:red, g:transparent) |
Skyler Grey | 3d1b450 | 2022-10-31 00:11:11 +0000 | [diff] [blame] | 14 | |
| 15 | call g:Highlight("DiagnosticVirtualTextInfo", g:darkblue, g:transparent) |
| 16 | call g:Highlight("DiagnosticVirtualTextHint", g:darkblue, g:transparent) |
| 17 | call g:Highlight("DiagnosticVirtualTextWarn", g:darkyellow, g:transparent) |
| 18 | call g:Highlight("DiagnosticVirtualTextError", g:darkred, g:transparent) |
Skyler Grey | 0c024ef | 2022-10-31 00:17:14 +0000 | [diff] [blame] | 19 | |
| 20 | call g:Highlight("CocCodeLens", g:lightgrey, g:transparent) |
| 21 | call g:Highlight("CocPumVirtualText", g:lightgrey, g:transparent) |
| 22 | call g:Highlight("CocInlayHint", g:darkpurple, g:transparent) |
Skyler Grey | 140fddc | 2023-01-27 09:43:42 +0000 | [diff] [blame] | 23 | |
| 24 | lua << EOF |
| 25 | local ok, lsp_lines = pcall(require, 'lsp_lines') |
| 26 | if ok then |
| 27 | lsp_lines.setup() |
| 28 | end |
| 29 | -- lsp_lines can sometimes fail to load (i.e. in git commits). |
| 30 | -- We must not crash if it does not exist |
| 31 | EOF |