fix: dont lazyload lsp colors

This commit is contained in:
Folke Lemaitre 2021-05-21 14:07:15 +02:00
parent 4b1a3f7b0d
commit ed89c01ea0

View File

@ -154,9 +154,6 @@ function M.setup(config)
-- These groups are for the native LSP client. Some other LSP clients may
-- use these groups, or use their own. Consult your LSP client's
-- documentation.
}
theme.plugins = {
LspReferenceText = { bg = c.fg_gutter }, -- used for highlighting "text" references
LspReferenceRead = { bg = c.fg_gutter }, -- used for highlighting "read" references
LspReferenceWrite = { bg = c.fg_gutter }, -- used for highlighting "write" references
@ -185,6 +182,9 @@ function M.setup(config)
-- LspDiagnosticsSignWarning = { }, -- Used for "Warning" signs in sign column
-- LspDiagnosticsSignInformation = { }, -- Used for "Information" signs in sign column
-- LspDiagnosticsSignHint = { }, -- Used for "Hint" signs in sign column
}
theme.plugins = {
-- These groups are for the neovim tree-sitter highlights.
-- As of writing, tree-sitter support is a WIP, group names may change.