Skip to content

Commit

Permalink
feat: @comment.note -> @comment.hint
Browse files Browse the repository at this point in the history
  • Loading branch information
mrtnvgr committed Jan 20, 2024
1 parent 0d840ed commit 1742b71
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lua/catppuccin/groups/integrations/treesitter.lua
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ If you want to stay on nvim 0.7, either disable the integration or pin catppucci

["@comment.error"] = { fg = C.base, bg = C.red },
["@comment.warning"] = { fg = C.base, bg = C.yellow },
["@comment.note"] = { fg = C.base, bg = C.blue },
["@comment.hint"] = { fg = C.base, bg = C.blue },
["@comment.todo"] = { fg = C.base, bg = C.flamingo },

-- Markup
Expand Down Expand Up @@ -252,6 +252,8 @@ 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 1742b71

Please sign in to comment.