From e5cdb398700bddcd5ce92c52fff107d8035a93a9 Mon Sep 17 00:00:00 2001 From: Igor Date: Mon, 13 Oct 2025 22:25:54 -0300 Subject: [PATCH] fix(treesitter): set `@type.builtin` as italic --- lua/catppuccin/groups/treesitter.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/catppuccin/groups/treesitter.lua b/lua/catppuccin/groups/treesitter.lua index a5f201d7..48675118 100644 --- a/lua/catppuccin/groups/treesitter.lua +++ b/lua/catppuccin/groups/treesitter.lua @@ -46,7 +46,7 @@ If you want to stay on nvim 0.7, pin catppuccin tag to v0.2.4 and nvim-treesitte -- Types ["@type"] = { link = "Type" }, -- For types. - ["@type.builtin"] = { fg = C.mauve, style = O.styles.properties or { "italic" } }, -- For builtin types. + ["@type.builtin"] = { fg = C.mauve, style = O.styles.types or {} }, -- For builtin types. ["@type.definition"] = { link = "Type" }, -- type definitions (e.g. `typedef` in C) ["@attribute"] = { link = "Constant" }, -- attribute annotations (e.g. Python decorators)