diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-10-22 22:28:03 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-10-22 22:28:03 +0200 |
commit | f0c716f9333ddcb5a4e89b31e58e3af4595c2320 (patch) | |
tree | e23f899c843bff171173f915a165e4bac1ea1a2c /lua/no-clown-fiesta/highlight-group | |
parent | 7f996e5cba7439d56f49bc9a4bd250b3e3fdca0e (diff) |
Set operator to red
Diffstat (limited to 'lua/no-clown-fiesta/highlight-group')
-rw-r--r-- | lua/no-clown-fiesta/highlight-group/treesitter.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/no-clown-fiesta/highlight-group/treesitter.lua b/lua/no-clown-fiesta/highlight-group/treesitter.lua index 4384423..d264ca1 100644 --- a/lua/no-clown-fiesta/highlight-group/treesitter.lua +++ b/lua/no-clown-fiesta/highlight-group/treesitter.lua @@ -31,7 +31,7 @@ function M.highlight(palette, opts) ["@variable"] = { fg = palette.white, style = opts.variables }, ["@variable.builtin"] = { fg = palette.white }, ["@property"] = { fg = palette.gray_blue }, - ["@operator"] = { fg = palette.gray_blue }, + ["@operator"] = { fg = palette.red }, ["@field"] = { fg = palette.white }, ["@parameter"] = { fg = palette.white }, ["@parameter.reference"] = { fg = palette.white }, |