Skip to content

Commit

Permalink
fix(treesitter): avoid possible nil
Browse files Browse the repository at this point in the history
  • Loading branch information
mrtnvgr committed Jul 29, 2023
1 parent 4913a8b commit 17ae783
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 @@ -29,7 +29,7 @@ If you want to stay on nvim 0.7, either disable the integration or pin catppucci
-- Literals
["@string"] = { link = "String" }, -- For strings.
["@string.regex"] = { fg = C.peach, style = O.styles.strings or {} }, -- For regexes.
["@string.escape"] = { fg = C.pink, style = O.styles.strings }, -- For escape characters within a string.
["@string.escape"] = { fg = C.pink, style = O.styles.strings or {} }, -- For escape characters within a string.
["@string.special"] = { link = "Special" }, -- other special strings (e.g. dates)

["@character"] = { link = "Character" }, -- character literals
Expand Down

0 comments on commit 17ae783

Please sign in to comment.