diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-10-22 23:24:01 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-10-22 23:24:01 +0200 |
commit | db146b849cd68dfe890e3ef0361ca8d3bd81d1a7 (patch) | |
tree | 334bd447007e953cea5c7a413bb6d0ac807935d7 /lua/no-clown-fiesta/highlight-group/treesitter.lua | |
parent | d968ff8418d3dc0fbce3e87e90856657363f65b5 (diff) |
Update
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 eade346..6acd7bb 100644 --- a/lua/no-clown-fiesta/highlight-group/treesitter.lua +++ b/lua/no-clown-fiesta/highlight-group/treesitter.lua @@ -12,7 +12,7 @@ function M.highlight(palette, opts) ["@exception"] = { fg = palette.red }, ["@include"] = { fg = palette.red }, ["@keyword"] = { fg = palette.gray_blue, style = opts.keywords }, - ["@keyword.function"] = { fg = palette.gray_blue, style = opts.keywords }, + ["@keyword.function"] = { fg = palette.cyan, style = opts.keywords }, ["@label"] = { fg = palette.red }, ["@namespace"] = { fg = palette.white }, ["@repeat"] = { fg = palette.red }, @@ -24,7 +24,7 @@ function M.highlight(palette, opts) ["@character"] = { fg = palette.light_green }, ["@error"] = { fg = palette.error_red }, ["@function"] = { fg = palette.cyan, style = opts.functions }, - ["@function.builtin"] = { fg = palette.red }, + ["@function.builtin"] = { fg = palette.cyan }, ["@method"] = { fg = palette.cyan }, ["@const.macro"] = { fg = palette.cyan }, ["@function.macro"] = { fg = palette.cyan }, |