diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-10-22 23:11:12 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-10-22 23:11:12 +0200 |
commit | 980694e57f353cdfb2a4a1d0289a0745da10549b (patch) | |
tree | a62a70603151139568c657327cf1bff6a025eb14 /lua/no-clown-fiesta | |
parent | 34cbc1a8aadb48c2136ba6f8a393e0a5734a3af1 (diff) |
Set fun to cyan
Diffstat (limited to 'lua/no-clown-fiesta')
-rw-r--r-- | lua/no-clown-fiesta/highlight-group/treesitter.lua | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lua/no-clown-fiesta/highlight-group/treesitter.lua b/lua/no-clown-fiesta/highlight-group/treesitter.lua index 4542805..6eb991a 100644 --- a/lua/no-clown-fiesta/highlight-group/treesitter.lua +++ b/lua/no-clown-fiesta/highlight-group/treesitter.lua @@ -23,9 +23,9 @@ function M.highlight(palette, opts) ["@boolean"] = { fg = palette.red }, ["@character"] = { fg = palette.light_green }, ["@error"] = { fg = palette.error_red }, - ["@function"] = { fg = palette.white, style = opts.functions }, - ["@function.builtin"] = { fg = palette.white }, - ["@method"] = { fg = palette.white }, + ["@function"] = { fg = palette.cyan, style = opts.functions }, + ["@function.builtin"] = { fg = palette.cyan }, + ["@method"] = { fg = palette.cyan }, ["@const.macro"] = { fg = palette.cyan }, ["@function.macro"] = { fg = palette.cyan }, ["@variable"] = { fg = palette.white, style = opts.variables }, @@ -50,7 +50,7 @@ function M.highlight(palette, opts) ["@title"] = { fg = palette.medium_gray }, ["@literal"] = { fg = palette.medium_gray }, ["@uri"] = { fg = palette.cyan, style = "underline" }, - ["@keyword.operator"] = { fg = palette.gray_blue }, + ["@keyword.operator"] = { fg = palette.red }, ["@structure"] = { fg = palette.purple_test }, ["@strong"] = { fg = palette.medium_gray }, ["@query.linter.error"] = { fg = palette.warning_orange }, |