24 lines
527 B
Nix
24 lines
527 B
Nix
{
|
|
plugins = {
|
|
git-conflict = {
|
|
enable = true;
|
|
settings = {
|
|
default_commands = true;
|
|
default_mappings = {
|
|
both = "<leader>Gb";
|
|
next = "<leader>Gn";
|
|
none = "<leader>G0";
|
|
ours = "<leader>Go";
|
|
prev = "<leader>Gp";
|
|
theirs = "<leader>Gt";
|
|
};
|
|
disable_diagnostics = false;
|
|
highlights = {
|
|
current = "DiffText";
|
|
incoming = "DiffAdd";
|
|
};
|
|
list_opener = "copen";
|
|
};
|
|
};
|
|
};
|
|
}
|