blob: f186b6b7becbc95496c6539b732f583b195c3b91 (
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
|