add git conflict git signs

This commit is contained in:
Neeraj 2023-05-22 21:01:11 +05:30
parent a69141cce0
commit ea941b5aa6
3 changed files with 72 additions and 0 deletions

View file

@ -106,3 +106,9 @@ for type, icon in pairs(signs) do
local hl = "DiagnosticSign" .. type
vim.fn.sign_define(hl, {text = icon, texthl = hl, numhl = hl})
end
vim.cmd [[highlight ConflictMarkerBegin guibg=#2f7366]]
vim.cmd [[highlight ConflictMarkerOurs guibg=#2e5049]]
vim.cmd [[highlight ConflictMarkerTheirs guibg=#344f69]]
vim.cmd [[highlight ConflictMarkerEnd guibg=#2f628e]]
vim.cmd [[highlight ConflictMarkerCommonAncestorsHunk guibg=#754a81]]