feat: adding git conflicts
This commit is contained in:
13
lua/cargdev/plugins/gitConflicts.lua
Normal file
13
lua/cargdev/plugins/gitConflicts.lua
Normal 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,
|
||||
}
|
||||
Reference in New Issue
Block a user