MsgArea={fg=c.fg_dark},-- Area for messages and cmdline
-- MsgSeparator= { }, -- Separator for scrolled messages, `msgsep` flag of 'display'
MoreMsg={fg=c.blue},-- |more-prompt|
NonText={fg=c.dark3},-- '@' at the end of the window, characters from 'showbreak' and other characters that do not really exist in the text (e.g., ">" displayed when a double-wide character doesn't fit at the end of the line). See also |hl-EndOfBuffer|.
Normal={fg=c.fg,bg=config.transparentandc.noneorc.bg},-- normal text
NormalNC={fg=c.fg,bg=config.transparentandc.noneorc.bg},-- normal text in non-current windows
NormalSB={fg=c.fg_sidebar,bg=c.bg_sidebar},-- normal text in non-current windows
NormalFloat={fg=c.fg,bg=c.bg_float},-- Normal text in floating windows.
SpecialKey={fg=c.dark3},-- Unprintable characters: text displayed differently from what it really is. But not 'listchars' whitespace. |hl-Whitespace|
SpellBad={fg=c.error,style="undercurl"},-- Word that is not recognized by the spellchecker. |spell| Combined with the highlighting used otherwise.
SpellCap={fg=c.warning,style="undercurl"},-- Word that should start with a capital. |spell| Combined with the highlighting used otherwise.
SpellLocal={fg=c.info,style="undercurl"},-- Word that is recognized by the spellchecker as one that is used in another region. |spell| Combined with the highlighting used otherwise.
SpellRare={fg=c.hint,style="undercurl"},-- Word that is recognized by the spellchecker as one that is hardly ever used. |spell| Combined with the highlighting used otherwise.
StatusLine={fg=c.fg_sidebar,bg=c.bg_statusline},-- status line of current window
StatusLineNC={fg=c.fg_gutter,bg=c.bg_statusline},-- status lines of not-current windows Note: if this is equal to "StatusLine" Vim will use "^^^" in the status line of the current window.
Error={fg=c.error},-- (preferred) any erroneous construct
Todo={bg=c.yellow,fg=c.bg},-- (preferred) anything that needs extra attention; mostly the keywords TODO FIXME and XXX
qfLineNr={fg=c.dark5},
qfFileName={fg=c.blue},
htmlH1={fg=c.magenta,style="bold"},
markdownH1={fg=c.magenta,style="bold"},
markdownH1Delimiter={fg=c.magenta},
htmlH2={fg=c.blue,style="bold"},
markdownH2={fg=c.blue,style="bold"},
markdownH2Delimiter={fg=c.blue},
-- 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
LspDiagnosticsDefaultError={fg=c.error},-- Used as the base highlight group. Other LspDiagnostic highlights link to this by default (except Underline)
LspDiagnosticsDefaultWarning={fg=c.warning},-- Used as the base highlight group. Other LspDiagnostic highlights link to this by default (except Underline)
LspDiagnosticsDefaultInformation={fg=c.info},-- Used as the base highlight group. Other LspDiagnostic highlights link to this by default (except Underline)
LspDiagnosticsDefaultHint={fg=c.hint},-- Used as the base highlight group. Other LspDiagnostic highlights link to this by default (except Underline)
LspDiagnosticsVirtualTextError={bg=util.darken(c.error,0.1),fg=c.error},-- Used for "Error" diagnostic virtual text
LspDiagnosticsVirtualTextWarning={bg=util.darken(c.warning,0.1),fg=c.warning},-- Used for "Warning" diagnostic virtual text
LspDiagnosticsVirtualTextInformation={bg=util.darken(c.info,0.1),fg=c.info},-- Used for "Information" diagnostic virtual text
LspDiagnosticsVirtualTextHint={bg=util.darken(c.hint,0.1),fg=c.hint},-- Used for "Hint" diagnostic virtual text
LspDiagnosticsUnderlineError={style="undercurl",sp=c.error},-- Used to underline "Error" diagnostics
LspDiagnosticsUnderlineWarning={style="undercurl",sp=c.warning},-- Used to underline "Warning" diagnostics
LspDiagnosticsUnderlineInformation={style="undercurl",sp=c.info},-- Used to underline "Information" diagnostics
LspDiagnosticsUnderlineHint={style="undercurl",sp=c.hint},-- 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.
-- As of writing, tree-sitter support is a WIP, group names may change.
-- By default, most of these groups link to an appropriate Vim group,
-- TSError -> Error for example, so you do not have to define these unless
-- you explicitly want to support Treesitter's improved syntax awareness.
-- TSAnnotation = { }; -- For C++/Dart attributes, annotations that can be attached to the code to denote some kind of meta information.
-- TSAttribute = { }; -- (unstable) TODO: docs
-- TSBoolean = { }; -- For booleans.
-- TSCharacter = { }; -- For characters.
-- TSComment = { }; -- For comment blocks.
TSConstructor={fg=c.magenta},-- For constructor calls and definitions: `= { }` in Lua, and Java constructors.
-- TSConditional = { }; -- For keywords related to conditionnals.
-- TSConstant = { }; -- For constants
-- TSConstBuiltin = { }; -- For constant that are built in the language: `nil` in Lua.
-- TSConstMacro = { }; -- For constants that are defined by macros: `NULL` in C.
-- TSError = { }; -- For syntax/parser errors.
-- TSException = { }; -- For exception related keywords.
TSField={fg=c.green1},-- For fields.
-- TSFloat = { }; -- For floats.
-- TSFunction = { }; -- For function (calls and definitions).
-- TSFuncBuiltin = { }; -- For builtin functions: `table.insert` in Lua.
-- TSFuncMacro = { }; -- For macro defined fuctions (calls and definitions): each `macro_rules` in Rust.
-- TSInclude = { }; -- For includes: `#include` in C, `use` or `extern crate` in Rust, or `require` in Lua.
TSKeyword={fg=c.purple,style=config.keywordStyle},-- For keywords that don't fall in previous categories.