diff options
author | Gustaf Rydholm <gustaf@nexure.io> | 2024-07-20 13:31:51 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf@nexure.io> | 2024-07-20 13:31:51 +0200 |
commit | 14970a61e8ebade9221c6778e381ab52bf73383c (patch) | |
tree | 22aa60bbaf16cf99705dec3f3709c7e6a601a49a /lua/no-clown-fiesta | |
parent | b164c148d497b843ad7c5255fee58ea8b6c5dd41 (diff) |
Fix colorscheme for grug far
Diffstat (limited to 'lua/no-clown-fiesta')
-rw-r--r-- | lua/no-clown-fiesta/groups/treesitter.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lua/no-clown-fiesta/groups/treesitter.lua b/lua/no-clown-fiesta/groups/treesitter.lua index 24fa968..c6a3c4c 100644 --- a/lua/no-clown-fiesta/groups/treesitter.lua +++ b/lua/no-clown-fiesta/groups/treesitter.lua @@ -16,6 +16,7 @@ function M.highlight(palette, opts) ["@const.macro"] = { fg = palette.cyan }, ["@constant"] = { fg = palette.white }, ["@constructor"] = { fg = palette.cyan }, + ["@diff.delta"] = { fg = palette.orange }, ["@error"] = { fg = palette.error }, ["@function"] = vim.tbl_extend( "force", @@ -63,10 +64,12 @@ function M.highlight(palette, opts) ["@string"] = { fg = palette.medium_gray_blue }, ["@string.escape"] = { fg = palette.medium_gray_blue }, ["@string.regexp"] = { fg = palette.medium_gray_blue }, + ["@string.special.path"] = { fg = palette.medium_gray_blue }, ["@string.special.symbol"] = { fg = palette.medium_gray }, ["@tag"] = { fg = palette.blue }, ["@tag.attribute"] = { fg = palette.white }, ["@tag.delimiter"] = { fg = palette.white }, + ["@text.uri"] = {fg = palette.medium_gray_blue }, ["@type"] = vim.tbl_extend("force", { fg = palette.white }, opts.styles.type), ["@type.builtin"] = { fg = palette.white }, ["@variable"] = vim.tbl_extend( |