diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-10-29 12:24:27 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-10-29 12:24:27 +0200 |
commit | 15c8ac22159a2e5791c5178d072ca1ead808ebee (patch) | |
tree | fbb29164177ff1da88040ca69d854fa9db8ff6ec /lua/no-clown-fiesta/highlight-group | |
parent | 27c9b7c92b914a70821c2415d69e8fddd6900fff (diff) |
Fix setting of style
Diffstat (limited to 'lua/no-clown-fiesta/highlight-group')
-rw-r--r-- | lua/no-clown-fiesta/highlight-group/treesitter.lua | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lua/no-clown-fiesta/highlight-group/treesitter.lua b/lua/no-clown-fiesta/highlight-group/treesitter.lua index ad576f4..4ca2816 100644 --- a/lua/no-clown-fiesta/highlight-group/treesitter.lua +++ b/lua/no-clown-fiesta/highlight-group/treesitter.lua @@ -2,17 +2,17 @@ local M = {} function M.highlight(palette, options) return { - ["@comment"] = { fg = palette.medium_gray, style = options.comments }, + ["@comment"] = { fg = palette.medium_gray, style = options.style.comments }, ["@annotation"] = { fg = palette.white }, ["@attribute"] = { fg = palette.white }, ["@constructor"] = { fg = palette.cyan }, - ["@type"] = { fg = palette.white, style = options.type }, + ["@type"] = { fg = palette.white, style = options.style.type }, ["@type.builtin"] = { fg = palette.white }, ["@conditional"] = { fg = palette.gray_blue }, ["@exception"] = { fg = palette.red }, ["@include"] = { fg = palette.red }, - ["@keyword"] = { fg = palette.gray_blue, style = options.keywords }, - ["@keyword.function"] = { fg = palette.gray_blue, style = options.keywords }, + ["@keyword"] = { fg = palette.gray_blue, style = options.style.keywords }, + ["@keyword.function"] = { fg = palette.gray_blue, style = options.style.keywords }, ["@label"] = { fg = palette.white }, ["@namespace"] = { fg = palette.white }, ["@repeat"] = { fg = palette.gray_blue }, @@ -23,12 +23,12 @@ function M.highlight(palette, options) ["@boolean"] = { fg = palette.red }, ["@character"] = { fg = palette.light_green }, ["@error"] = { fg = palette.error_red }, - ["@function"] = { fg = palette.cyan, style = options.functions }, + ["@function"] = { fg = palette.cyan, style = options.style.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 = options.variables }, + ["@variable"] = { fg = palette.white, style = options.style.variables }, ["@variable.builtin"] = { fg = palette.white }, ["@property"] = { fg = palette.white }, ["@operator"] = { fg = palette.white }, |