blob: 3a37f83b08dcad613fca4ec0bbcbc6dce87bc851 (
plain)
1
2
3
4
5
6
7
8
9
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
|