diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2024-07-22 00:56:56 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2024-07-22 00:56:56 +0200 |
commit | 2fc78155472320a01db180b0a3ea1e04e4abebca (patch) | |
tree | ee750bf6edf6de10200c8428513ed9764d8f6261 /lua/no-clown-fiesta/groups | |
parent | a4df2d2b2741e746a5b2626c2f0a22d4ab3309ea (diff) |
Update diff.delta again
Diffstat (limited to 'lua/no-clown-fiesta/groups')
-rw-r--r-- | lua/no-clown-fiesta/groups/treesitter.lua | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lua/no-clown-fiesta/groups/treesitter.lua b/lua/no-clown-fiesta/groups/treesitter.lua index 40edd66..bc68b21 100644 --- a/lua/no-clown-fiesta/groups/treesitter.lua +++ b/lua/no-clown-fiesta/groups/treesitter.lua @@ -16,7 +16,11 @@ function M.highlight(palette, opts) ["@const.macro"] = { fg = palette.cyan }, ["@constant"] = { fg = palette.white }, ["@constructor"] = { fg = palette.cyan }, - ["@diff.delta"] = { fg = palette.fg, bg = palette.sign_change }, + ["@diff.delta"] = { + fg = palette.sign_add, + bg = palette.accent_green, + bold = true, + }, ["@error"] = { fg = palette.error }, ["@function"] = vim.tbl_extend( "force", |