Skip to content

Commit

Permalink
fix(treesitter): invalid string in type builtin
Browse files Browse the repository at this point in the history
  • Loading branch information
rewhile committed Sep 2, 2023
1 parent a090523 commit 135f9b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/catppuccin/groups/integrations/treesitter.lua
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ If you want to stay on nvim 0.7, either disable the integration or pin catppucci
-- Types

["@type"] = { link = "Type" }, -- For types.
["@type.builtin"] = { fg = C.yellow, style = O.styles.properties or "italic" }, -- For builtin types.
["@type.builtin"] = { fg = C.yellow, style = O.styles.properties or { "italic" } }, -- For builtin types.
["@type.definition"] = { link = "@type" }, -- type definitions (e.g. `typedef` in C)
["@type.qualifier"] = { link = "@type" }, -- type qualifiers (e.g. `const`)

Expand Down

0 comments on commit 135f9b0

Please sign in to comment.