nixos-config/home-manager/modules/neovim/plugins/git-conflict.nix
2024-08-18 23:58:42 -04:00

20 lines
341 B
Nix

_: {
programs.nixvim = {
plugins = {
git-conflict = {
enable = true;
settings = {
default_mappings = {
ours = "co";
theirs = "ct";
none = "c0";
both = "cb";
next = "]x";
prev = "[x";
};
};
};
};
};
}