Skip to content

Commit

Permalink
Improve Neovim LSP highlighting (#269)
Browse files Browse the repository at this point in the history
  • Loading branch information
joshdick authored Jun 22, 2021
1 parent d42ae8e commit 5f81e96
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions colors/onedark.vim
Original file line number Diff line number Diff line change
Expand Up @@ -633,7 +633,12 @@ if has("nvim")
let g:terminal_color_background = g:terminal_color_0
let g:terminal_color_foreground = g:terminal_color_7
" }}}
" Neovim LSP colors {{{

" Neovim LSP {{{
call s:h("LspError", { "fg": s:red })
call s:h("LspWarning", { "fg": s:yellow })
call s:h("LspInformation", { "fg": s:blue })
call s:h("LspHint", { "fg": s:cyan })
call s:h("LspDiagnosticsDefaultError", { "fg": s:red })
call s:h("LspDiagnosticsDefaultWarning", { "fg": s:yellow })
call s:h("LspDiagnosticsDefaultInformation", { "fg": s:white })
Expand All @@ -642,7 +647,7 @@ if has("nvim")
call s:h("LspDiagnosticsUnderlineWarning", { "fg": s:yellow, "gui": "underline", "cterm": "underline" })
call s:h("LspDiagnosticsUnderlineInformation", { "fg": s:white, "gui": "underline", "cterm": "underline" })
call s:h("LspDiagnosticsUnderlineHint", { "fg": s:comment_grey, "gui": "underline", "cterm": "underline" })
" }}}
" }}}
endif

" }}}
Expand Down

0 comments on commit 5f81e96

Please sign in to comment.