1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-13 05:56:08 +01:00
nixvim/tests/test-sources/plugins/by-name/unified/default.nix
Austin Horstman 3e8c4c802c unified: add module
an inline, unified diff viewer for neovim
2025-09-17 18:22:33 +00:00

29 lines
522 B
Nix

{
empty = {
plugins.unified.enable = true;
};
defaults = {
plugins.unified = {
enable = true;
settings = {
signs = {
add = "";
delete = "";
change = "";
};
highlights = {
add = "DiffAdd";
delete = "DiffDelete";
change = "DiffChange";
};
line_symbols = {
add = "+";
delete = "-";
change = "~";
};
auto_refresh = true;
};
};
};
}