mirror of
https://github.com/nix-community/nixvim.git
synced 2025-11-13 05:56:08 +01:00
29 lines
522 B
Nix
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;
|
|
};
|
|
};
|
|
};
|
|
}
|