feat: adding git conflicts

This commit is contained in:
cg8936
2025-05-16 12:09:14 -04:00
parent 7dbe22cd67
commit 8d2824b0a4
2 changed files with 22 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
return {
"akinsho/git-conflict.nvim",
config = function()
require("git-conflict").setup({
default_mappings = true, -- enable buffer local mapping created by this plugin
disable_diagnostics = true, -- This will disable diagnostics in a buffer whilst it is conflicted
highlights = { -- They must have background color, otherwise the default color will be used
incoming = "DiffText",
current = "DiffAdd",
},
})
end,
}