add better lsp diagnostic integration

This commit is contained in:
kiyan
2021-04-16 00:03:56 +02:00
parent 75338221b0
commit b5ef2fb7f8
4 changed files with 55 additions and 26 deletions

View File

@@ -34,7 +34,6 @@ local function get_hl_groups()
Symlink = { gui = 'bold', fg = colors.cyan },
FolderIcon = { fg = '#8094b4' },
RootFolder = { fg = colors.purple },
LspDiagnostics = { gui = 'underline' },
ExecFile = { gui = 'bold', fg = colors.green },
SpecialFile = { gui = 'bold,underline', fg = colors.yellow },
@@ -68,6 +67,10 @@ local function get_links()
FileDeleted = 'NvimTreeGitDeleted',
Popup = 'Normal',
GitIgnored = 'Comment',
LspDiagnosticsError = "LspDiagnosticsDefaultError",
LspDiagnosticsWarning = "LspDiagnosticsDefaultWarning",
LspDiagnosticsInformation = "LspDiagnosticsDefaultInformation",
LspDiagnosticsHint = "LspDiagnosticsDefaultHint",
}
end