|
|
@ -11,7 +11,7 @@ function M.get(cp)
|
|
|
|
|
|
|
|
|
|
|
|
-- TSAnnotation = { }; -- For C++/Dart attributes, annotations that can be attached to the code to denote some kind of meta information.
|
|
|
|
-- TSAnnotation = { }; -- For C++/Dart attributes, annotations that can be attached to the code to denote some kind of meta information.
|
|
|
|
-- TSAttribute = { }; -- (unstable) TODO: docs
|
|
|
|
-- TSAttribute = { }; -- (unstable) TODO: docs
|
|
|
|
TSBoolean = { fg = cp.catppuccino7_br, style = cnf.styles.keywords }, -- For booleans.
|
|
|
|
TSBoolean = { fg = cp.catppuccino7, style = cnf.styles.keywords }, -- For booleans.
|
|
|
|
-- TSCharacter = { }; -- For characters.
|
|
|
|
-- TSCharacter = { }; -- For characters.
|
|
|
|
-- TSComment = { }; -- For comment blocks.
|
|
|
|
-- TSComment = { }; -- For comment blocks.
|
|
|
|
TSNote = { fg = cp.catppuccino2, catppuccino2 = cp.info },
|
|
|
|
TSNote = { fg = cp.catppuccino2, catppuccino2 = cp.info },
|
|
|
@ -20,7 +20,7 @@ function M.get(cp)
|
|
|
|
TSConstructor = { fg = cp.catppuccino5 }, -- For constructor calls and definitions: `= { }` in Lua, and Java constructors.
|
|
|
|
TSConstructor = { fg = cp.catppuccino5 }, -- For constructor calls and definitions: `= { }` in Lua, and Java constructors.
|
|
|
|
TSConditional = { fg = cp.catppuccino6, style = cnf.styles.keywords }, -- For keywords related to conditionnals.
|
|
|
|
TSConditional = { fg = cp.catppuccino6, style = cnf.styles.keywords }, -- For keywords related to conditionnals.
|
|
|
|
TSConstant = { fg = cp.catppuccino7 }, -- For constants
|
|
|
|
TSConstant = { fg = cp.catppuccino7 }, -- For constants
|
|
|
|
TSConstBuiltin = { fg = cp.catppuccino7_br, style = cnf.styles.keywords }, -- For constant that are built in the language: `nil` in Lua.
|
|
|
|
TSConstBuiltin = { fg = cp.catppuccino7, style = cnf.styles.keywords }, -- For constant that are built in the language: `nil` in Lua.
|
|
|
|
-- TSConstMacro = { }; -- For constants that are defined by macros: `NULL` in cp.
|
|
|
|
-- TSConstMacro = { }; -- For constants that are defined by macros: `NULL` in cp.
|
|
|
|
-- TSError = { }; -- For syntax/parser errors.
|
|
|
|
-- TSError = { }; -- For syntax/parser errors.
|
|
|
|
TSException = { fg = cp.catppuccino4, style = cnf.styles.keywords }, -- For exception related keywords.
|
|
|
|
TSException = { fg = cp.catppuccino4, style = cnf.styles.keywords }, -- For exception related keywords.
|
|
|
@ -40,11 +40,11 @@ function M.get(cp)
|
|
|
|
-- TSNone = { }; -- TODO: docs
|
|
|
|
-- TSNone = { }; -- TODO: docs
|
|
|
|
-- TSNumber = { }; -- For all numbers
|
|
|
|
-- TSNumber = { }; -- For all numbers
|
|
|
|
TSOperator = { fg = cp.catppuccino3 }, -- For any operator: `+`, but also `->` and `*` in cp.
|
|
|
|
TSOperator = { fg = cp.catppuccino3 }, -- For any operator: `+`, but also `->` and `*` in cp.
|
|
|
|
TSParameter = { fg = cp.catppuccino7_br }, -- For parameters of a function.
|
|
|
|
TSParameter = { fg = cp.catppuccino7 }, -- For parameters of a function.
|
|
|
|
-- TSParameterReference= { }; -- For references to parameters of a function.
|
|
|
|
-- TSParameterReference= { }; -- For references to parameters of a function.
|
|
|
|
TSProperty = { fg = cp.catppuccino6 }, -- Same as `TSField`.
|
|
|
|
TSProperty = { fg = cp.catppuccino6 }, -- Same as `TSField`.
|
|
|
|
tomlTSProperty = { fg = cp.catppuccino10 }, -- Differentiates between string and properties
|
|
|
|
tomlTSProperty = { fg = cp.catppuccino10 }, -- Differentiates between string and properties
|
|
|
|
TSPunctDelimiter = { fg = cp.catppuccino8_br }, -- For delimiters ie: `.`
|
|
|
|
TSPunctDelimiter = { fg = cp.catppuccino8 }, -- For delimiters ie: `.`
|
|
|
|
TSPunctBracket = { fg = cp.catppuccino6 }, -- For brackets and parenthesis.
|
|
|
|
TSPunctBracket = { fg = cp.catppuccino6 }, -- For brackets and parenthesis.
|
|
|
|
TSPunctSpecial = { fg = cp.catppuccino0 }, -- For special punctutation that does not fall in the catagories before.
|
|
|
|
TSPunctSpecial = { fg = cp.catppuccino0 }, -- For special punctutation that does not fall in the catagories before.
|
|
|
|
TSRepeat = { fg = cp.catppuccino6, style = cnf.styles.keywords }, -- For keywords related to loops.
|
|
|
|
TSRepeat = { fg = cp.catppuccino6, style = cnf.styles.keywords }, -- For keywords related to loops.
|
|
|
|