LineNr{fg=Normal.bg.li(30),bg=opt.lighten_linenrandNormal.bg.li(6)or"NONE"},-- Line number for ":number" and ":#" commands, and when 'number' or 'relativenumber' option is set.
PmenuThumb{bg=Normal.bg.li(50)},-- Popup menu: Thumb of the scrollbar.
Search{bg=p.blossom.de(12).da(32),fg=p.fg},-- Last search pattern highlighting (see 'hlsearch'). Also used for similar items that need to stand out.
IncSearch{bg=p.blossom,fg=p.bg,gui="bold"},-- 'incsearch' highlighting; also used for the text replaced with ":s///c"
-- Substitute { }, -- |:substitute| replacement text highlighting
MatchParen{Search},-- The character under the cursor or just before it, if it is a paired bracket, and its match. |pi_paren.txt|
-- QuickFixLine { }, -- Current |quickfix| item in the quickfix window. Combined with |hl-CursorLine| when the cursor is there.
SpellBad{fg=Error.fg.de(30),gui="undercurl",guisp=Error.fg},-- Word that is not recognized by the spellchecker. |spell| Combined with the highlighting used otherwise.
SpellCap{SpellBad,guisp=Error.fg.da(10)},-- Word that should start with a capital. |spell| Combined with the highlighting used otherwise.
SpellLocal{SpellCap},-- Word that is recognized by the spellchecker as one that is used in another region. |spell| Combined with the highlighting used otherwise.
SpellRare{SpellBad,guisp=p.wood},-- Word that is recognized by the spellchecker as one that is hardly ever used. |spell| Combined with the highlighting used otherwise.
StatusLine{bg=p.bg.li(16),fg=p.fg},-- status line of current window
StatusLineNC{bg=p.bg.li(11),fg=p.fg.li(28)},-- status lines of not-current windows Note: if this is equal to "StatusLine" Vim will use "^^^" in the status line of the current window.
-- VisualNOS { }, -- Visual mode selection when vim is "Not Owning the Selection".
NonText{fg=Normal.bg.li(26)},-- '@' 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|.
SpecialKey{NonText,gui="italic"},-- Unprintable characters: text displayed differently from what it really is. But not 'listchars' whitespace. |hl-Whitespace|
Whitespace{NonText},-- "nbsp", "space", "tab" and "trail" in 'listchars'
EndOfBuffer{NonText},-- filler lines (~) after the end of the buffer. By default, this is highlighted like |hl-NonText|.
WildMenu{bg=p.blossom,fg=p.bg},-- current match in 'wildmenu' completion
Directory{gui="bold"},-- directory names (and other special names in listings)
Question{MoreMsg},-- |hit-enter| prompt and yes/no questions
Title{gui="bold"},-- titles for output from ":set all", ":autocmd" etc.
-- These groups are not listed as default vim groups,
-- but they are defacto standard group names for syntax highlighting.
-- commented out groups should chain up to their "preferred" group by
-- default,
-- Uncomment and edit if you want more specific syntax highlighting.
Constant{fg=p.fg.da(24),gui="italic"},-- (preferred) any constant
-- String { }, -- a string constant: "this is a string"
-- Character { }, -- a character constant: 'c', '\n'
Number{fg=p.fg,gui="italic"},-- a number constant: 234, 0xff
Boolean{Number},-- a boolean constant: TRUE, false
-- Float { }, -- a floating point constant: 2.3e10
Identifier{fg=p.fg.da(14)},-- (preferred) any variable name
Function{fg=p.fg},-- function name (also: methods for classes)
Statement{fg=p.fg,gui="bold"},-- (preferred) any statement
LspDiagnosticsDefaultError{DiagnosticError},-- Used as the base highlight group. Other LspDiagnostic highlights link to this by default (except Underline)
LspDiagnosticsDefaultWarning{DiagnosticWarn},-- Used as the base highlight group. Other LspDiagnostic highlights link to this by default (except Underline)
LspDiagnosticsDefaultInformation{DiagnosticInfo},-- Used as the base highlight group. Other LspDiagnostic highlights link to this by default (except Underline)
LspDiagnosticsDefaultHint{DiagnosticHint},-- Used as the base highlight group. Other LspDiagnostic highlights link to this by default (except Underline)
LspDiagnosticsVirtualTextError{DiagnosticVirtualTextError},-- Used for "Error" diagnostic virtual text
LspDiagnosticsVirtualTextWarning{DiagnosticVirtualTextWarn},-- Used for "Warning" diagnostic virtual text
-- LspDiagnosticsVirtualTextInformation { }, -- Used for "Information" diagnostic virtual text
-- LspDiagnosticsVirtualTextHint { }, -- Used for "Hint" diagnostic virtual text
LspDiagnosticsUnderlineError{DiagnosticUnderlineError},-- Used to underline "Error" diagnostics
LspDiagnosticsUnderlineWarning{DiagnosticUnderlineWarn},-- Used to underline "Warning" diagnostics
LspDiagnosticsUnderlineInformation{DiagnosticUnderlineInfo},-- Used to underline "Information" diagnostics
LspDiagnosticsUnderlineHint{DiagnosticUnderlineHint},-- 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
LspCodeLens{LineNr},
-- 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 { }; -- For constructor calls and definitions: ` { }` in Lua, and Java constructors.
-- TSConditional { }; -- For keywords related to conditionnals.
TSConstant{Identifier,gui="bold"};-- For constants
TSConstBuiltin{Number};-- For constant that are built in the language: `nil` in Lua.
TSConstMacro{Number};-- For constants that are defined by macros: `NULL` in C.
-- TSError { }; -- For syntax/parser errors.
-- TSException { }; -- For exception related keywords.
-- TSField { }; -- For fields.
-- TSFloat { }; -- For floats.
-- TSFunction { }; -- For function (calls and definitions).
-- TSFuncBuiltin { }; -- For builtin functions: `print` 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 { }; -- For keywords that don't fall in previous categories.
-- TSKeywordFunction { }; -- For keywords used to define a fuction.
-- TSLabel { }; -- For labels: `label:` in C and `:label:` in Lua.
-- TSMethod { }; -- For method calls and definitions.
TSNamespace{Special};-- For identifiers referring to modules and namespaces.
-- TSNone { }; -- TODO: docs
-- TSNumber { }; -- For all numbers
-- TSOperator { }; -- For any operator: `+`, but also `->` and `*` in C.
-- TSParameter { }; -- For parameters of a function.
-- TSParameterReference { }; -- For references to parameters of a function.
-- TSProperty { }; -- Same as `TSField`.
-- TSPunctDelimiter { }; -- For delimiters ie: `.`
-- TSPunctBracket { }; -- For brackets and parens.
-- TSPunctSpecial { }; -- For special punctutation that does not fall in the catagories before.
-- TSRepeat { }; -- For keywords related to loops.
-- TSString { }; -- For strings.
-- TSStringRegex { }; -- For regexes.
-- TSStringEscape { }; -- For escape characters within a string.
-- TSSymbol { }; -- For identifiers referring to symbols or atoms.
-- TSType { }; -- For types.
-- TSTypeBuiltin { }; -- For builtin types.
TSVariable{Identifier},-- Any variable name that does not have another highlight.
TSVariableBuiltin{Number};-- Variable names that are defined by the languages, like `this` or `self`.
TSTag{Special},-- Tags like html tag names.
-- TSTagDelimiter { }; -- Tag delimiter like `<` `>` `/`
-- TSText { }; -- For strings considered text in a markup language.
-- TSEmphasis { }; -- For text to be represented with emphasis.
-- TSUnderline { }; -- For text to be represented with an underline.