Merge pull request #1 from dylanarmstrong/master

feat: add lsp diagnostics
This commit is contained in:
siduck76 2021-06-23 00:14:54 +05:30 committed by GitHub
commit c0f053a472
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -329,7 +329,13 @@ local function apply_base16_theme(theme, use_256_colorspace)
-- Java highlighting
highlight("javaOperator", theme.base0D, nil, cterm0D, nil, nil, nil)
-- LspDiagnostic base highlight group
highlight("LspDiagnosticsDefaultError", theme.base08, nil, cterm00, cterm08, nil, nil)
highlight("LspDiagnosticsDefaultWarning", theme.base0A, nil, cterm08, cterm00, nil, nil)
highlight("LspDiagnosticsDefaultInformation", theme.base0D, nil, cterm08, cterm00, nil, nil)
highlight("LspDiagnosticsDefaultHint", theme.base0C, nil, cterm08, cterm00, nil, nil)
-- TODO
-- nvim.command 'syntax on'
end