diff options
author | aktersnurra <gustaf.rydholm@gmail.com> | 2022-10-29 19:20:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-29 19:20:48 +0200 |
commit | d2c92863069b45d4264fb9dfc167cda07d2c7f6d (patch) | |
tree | be57d453a35e0363f7c3f70c1416e266fd52a482 /lua/no-clown-fiesta/highlight-group/treesitter.lua | |
parent | 2951af7bbd839ebef25e33f8bd01bd5c501f76c8 (diff) |
Update lsp groups (#13)
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 fb3d1c1..6217cb7 100644 --- a/lua/no-clown-fiesta/highlight-group/treesitter.lua +++ b/lua/no-clown-fiesta/highlight-group/treesitter.lua @@ -36,7 +36,7 @@ function M.highlight(palette, options) ["@number"] = { fg = palette.red }, ["@boolean"] = { fg = palette.red }, ["@character"] = { fg = palette.light_green }, - ["@error"] = { fg = palette.error_red }, + ["@error"] = { fg = palette.error }, ["@function"] = vim.tbl_extend( "force", { fg = palette.cyan }, @@ -75,7 +75,7 @@ function M.highlight(palette, options) ["@keyword.operator"] = { fg = palette.gray_blue }, ["@structure"] = { fg = palette.purple_test }, ["@strong"] = { fg = palette.medium_gray }, - ["@query.linter.error"] = { fg = palette.warning_orange }, + ["@query.linter.error"] = { fg = palette.warning }, } end |