mirror of
https://github.com/gbprod/nord.nvim.git
synced 2026-08-28 10:15:54 -05:00
14 lines
300 B
Lua
14 lines
300 B
Lua
local diffview = {}
|
|
|
|
local c = require("nord.colors").palette
|
|
|
|
function diffview.highlights()
|
|
return {
|
|
DiffviewFilePanelInsertions = { fg = c.aurora.green },
|
|
DiffviewFilePanelDeletions = { fg = c.aurora.red },
|
|
DiffviewStatusModified = { fg = c.aurora.yellow },
|
|
}
|
|
end
|
|
|
|
return diffview
|