Update lsp highlight groups

This commit is contained in:
Sergio Alejandro Vargas 2021-03-10 14:58:09 -05:00 committed by Oliver Marriott
parent 66bc0ac6e2
commit 1a06dcacdc
Signed by: devraza
GPG key ID: 91EAD6081011574B

View file

@ -166,24 +166,34 @@ local theme = lush(function()
-- Todo { }, -- (preferred) anything that needs extra attention; mostly the keywords TODO FIXME and XXX -- Todo { }, -- (preferred) anything that needs extra attention; mostly the keywords TODO FIXME and XXX
-- These groups are for the native LSP client. Some other LSP clients may use ---- 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. ---- these groups, or use their own. Consult your LSP client's documentation.
-- LspDiagnosticsError { }, -- used for "Error" diagnostic virtual text -- LspReferenceText { }; -- used for highlighting "text" references
-- LspDiagnosticsErrorSign { }, -- used for "Error" diagnostic signs in sign column -- LspReferenceRead { }; -- used for highlighting "read" references
-- LspDiagnosticsErrorFloating { }, -- used for "Error" diagnostic messages in the diagnostics float -- LspReferenceWrite { }; -- used for highlighting "write" references
-- LspDiagnosticsWarning { }, -- used for "Warning" diagnostic virtual text
-- LspDiagnosticsWarningSign { }, -- used for "Warning" diagnostic signs in sign column -- LspDiagnosticsDefaultError { }; -- Used as the base highlight group. Other LspDiagnostic highlights link to this by default (except Underline)
-- LspDiagnosticsWarningFloating { }, -- used for "Warning" diagnostic messages in the diagnostics float -- LspDiagnosticsDefaultWarning { }; -- Used as the base highlight group. Other LspDiagnostic highlights link to this by default (except Underline)
-- LspDiagnosticsInformation { }, -- used for "Information" diagnostic virtual text -- LspDiagnosticsDefaultInformation { }; -- Used as the base highlight group. Other LspDiagnostic highlights link to this by default (except Underline)
-- LspDiagnosticsInformationSign { }, -- used for "Information" signs in sign column -- LspDiagnosticsDefaultHint { }; -- Used as the base highlight group. Other LspDiagnostic highlights link to this by default (except Underline)
-- LspDiagnosticsInformationFloating { }, -- used for "Information" diagnostic messages in the diagnostics float
-- LspDiagnosticsHint { }, -- used for "Hint" diagnostic virtual text -- LspDiagnosticsVirtualTextError { }; -- Used for "Error" diagnostic virtual text
-- LspDiagnosticsHintSign { }, -- used for "Hint" diagnostic signs in sign column -- LspDiagnosticsVirtualTextWarning { }; -- Used for "Warning" diagnostic virtual text
-- LspDiagnosticsHintFloating { }, -- used for "Hint" diagnostic messages in the diagnostics float -- LspDiagnosticsVirtualTextInformation { }; -- Used for "Information" diagnostic virtual text
-- LspReferenceText { }, -- used for highlighting "text" references -- LspDiagnosticsVirtualTextHint { }; -- Used for "Hint" diagnostic virtual text
-- LspReferenceRead { }, -- used for highlighting "read" references -- LspDiagnosticsUnderlineError { }; -- Used to underline "Error" diagnostics
-- LspReferenceWrite { }, -- used for highlighting "write" references -- LspDiagnosticsUnderlineWarning { }; -- Used to underline "Warning" diagnostics
-- LspDiagnosticsUnderlineInformation { }; -- Used to underline "Information" diagnostics
-- LspDiagnosticsUnderlineHint { }; -- Used to underline "Hint" diagnostics
-- LspDiagnosticsFloatingError { }; -- Used to color "Error" diagnostic messages in diagnostics float
-- LspDiagnosticsFloatingWarning { }; -- Used to color "Warning" diagnostic messages in diagnostics float
-- LspDiagnosticsFloatingInformation { }; -- Used to color "Information" diagnostic messages in diagnostics float
-- LspDiagnosticsFloatingHint { }; -- Used to color "Hint" diagnostic messages in diagnostics float
-- LspDiagnosticsSignError { }; -- Used for "Error" signs in sign column
-- LspDiagnosticsSignWarning { }; -- Used for "Warning" signs in sign column
-- LspDiagnosticsSignInformation { }; -- Used for "Information" signs in sign column
-- LspDiagnosticsSignHint { }; -- Used for "Hint" signs in sign column
-- These groups are for the neovim tree-sitter highlights. -- These groups are for the neovim tree-sitter highlights.
-- As of writing, tree-sitter support is a WIP, group names may change. -- As of writing, tree-sitter support is a WIP, group names may change.