diff options
author | Eric Pershke <erson.99.cool@gmail.com> | 2025-01-25 16:31:04 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-01-25 14:31:04 +0100 |
commit | 9088d0c19ff9015a566198a0b4406fcba0f89c1f (patch) | |
tree | 81ae34f48f120a352711f493a1ce33f7eb9d9388 /lua/no-clown-fiesta/groups/diffview.lua | |
parent | 6453c0ca2f31607829457694b4208c1f612fdd61 (diff) |
Add diffview plugin support (#51)
Diffstat (limited to 'lua/no-clown-fiesta/groups/diffview.lua')
-rw-r--r-- | lua/no-clown-fiesta/groups/diffview.lua | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/lua/no-clown-fiesta/groups/diffview.lua b/lua/no-clown-fiesta/groups/diffview.lua new file mode 100644 index 0000000..f186b6b --- /dev/null +++ b/lua/no-clown-fiesta/groups/diffview.lua @@ -0,0 +1,10 @@ +local M = {} + +function M.highlight(palette, opts) + return { + DiffviewFilePanelInsertions = { fg = palette.sign_add, bold = true }, + DiffviewFilePanelDeletions = { fg = palette.sign_delete, bold = true }, + } +end + +return M |