You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
* fix(treesitter): keep `lavender` for `@property`* fix(treesitter): standardise `lavender` for all `@property`* chore: change `@variable.member` back to `lavender`
["@property"]= {fg=C.text,style=O.styles.propertiesor {} },-- For fields, like accessing `bar` property on `foo.bar`. Overriden later for data languages and CSS.
53
+
["@property"]= {fg=C.lavender,style=O.styles.propertiesor {} },-- For fields, like accessing `bar` property on `foo.bar`. Overriden later for data languages and CSS.
54
54
55
55
-- Functions
56
56
["@function"]= {link="Function"},-- For function (calls and definitions).
@@ -172,26 +172,15 @@ If you want to stay on nvim 0.7, pin catppuccin tag to v0.2.4 and nvim-treesitte
172
172
["@markup.link.label.html"]= {fg=C.text },-- Text between <a></a> tags.
173
173
["@character.special.html"]= {fg=C.red },-- Symbols such as .
174
174
175
-
-- TOML
176
-
["@property.toml"]= {fg=C.blue },-- For fields.
177
-
178
-
-- JSON
179
-
["@property.json"]= {fg=C.blue },-- For fields.
180
-
181
175
-- Lua
182
176
["@constructor.lua"]= {link="@punctuation.bracket"},-- For constructor calls and definitions: = { } in Lua.