Skip to content

Commit

Permalink
fix: typos in legacy highlights
Browse files Browse the repository at this point in the history
  • Loading branch information
mrtnvgr committed Jan 20, 2024
1 parent 1742b71 commit 83717d0
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions lua/catppuccin/groups/integrations/treesitter.lua
Original file line number Diff line number Diff line change
Expand Up @@ -213,11 +213,13 @@ If you want to stay on nvim 0.7, either disable the integration or pin catppucci
colors["@text.todo.checked"] = colors["@markup.list.checked"]
colors["@text.todo.unchecked"] = colors["@markup.list.unchecked"]

colors["@comment.note"] = colors["@comment.hint"]

-- @text.todo is now for todo comments, not todo notes like in markdown
colors["@text.todo"] = colors["comment.todo"]
colors["@text.warning"] = colors["comment.warning"]
colors["@text.note"] = colors["comment.note"]
colors["@text.danger"] = colors["comment.error"]
colors["@text.todo"] = colors["@comment.todo"]
colors["@text.warning"] = colors["@comment.warning"]
colors["@text.note"] = colors["@comment.note"]
colors["@text.danger"] = colors["@comment.error"]

-- @text.uri is now
-- @markup.link.url in markup links
Expand Down Expand Up @@ -252,8 +254,6 @@ If you want to stay on nvim 0.7, either disable the integration or pin catppucci
colors["@method.php"] = colors["@function.method.php"]
colors["@method.call.php"] = colors["@function.method.call.php"]

colors["@comment.note"] = colors["@comment.hint"]

return colors
end

Expand Down

0 comments on commit 83717d0

Please sign in to comment.