diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-10-23 00:09:34 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-10-23 00:09:34 +0200 |
commit | f8729bd4c35cb9eee74c2cdb6540bf02156c0310 (patch) | |
tree | 8d73562135d555e38b072310aad1e4d47c47c781 /lua/no-clown-fiesta/highlight-group/treesitter.lua | |
parent | 0474a8b17b932f01ca8825c67e31d43916fd1667 (diff) |
Set fun red
Diffstat (limited to 'lua/no-clown-fiesta/highlight-group/treesitter.lua')
-rw-r--r-- | lua/no-clown-fiesta/highlight-group/treesitter.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lua/no-clown-fiesta/highlight-group/treesitter.lua b/lua/no-clown-fiesta/highlight-group/treesitter.lua index 6139cd3..45339af 100644 --- a/lua/no-clown-fiesta/highlight-group/treesitter.lua +++ b/lua/no-clown-fiesta/highlight-group/treesitter.lua @@ -5,14 +5,14 @@ function M.highlight(palette, opts) ["@comment"] = { fg = palette.medium_gray, style = opts.comments }, ["@annotation"] = { fg = palette.white }, ["@attribute"] = { fg = palette.white }, - ["@constructor"] = { fg = palette.white }, + ["@constructor"] = { fg = palette.cyan }, ["@type"] = { fg = palette.white, style = opts.type }, ["@type.builtin"] = { fg = palette.white }, ["@conditional"] = { fg = palette.red }, ["@exception"] = { fg = palette.red }, ["@include"] = { fg = palette.red }, ["@keyword"] = { fg = palette.red, style = opts.keywords }, - ["@keyword.function"] = { fg = palette.gray_blue, style = opts.keywords }, + ["@keyword.function"] = { fg = palette.red, style = opts.keywords }, ["@label"] = { fg = palette.red }, ["@namespace"] = { fg = palette.white }, ["@repeat"] = { fg = palette.red }, |