mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 08:35:43 +02:00
19 lines
419 B
Nix
19 lines
419 B
Nix
{
|
|
empty = {
|
|
plugins.gitblame.enable = true;
|
|
};
|
|
|
|
defaults = {
|
|
plugins.gitblame = {
|
|
enable = true;
|
|
messageTemplate = " <author> • <date> • <summary>";
|
|
dateFormat = "%c";
|
|
messageWhenNotCommitted = " Not Committed Yet";
|
|
highlightGroup = "Comment";
|
|
displayVirtualText = true;
|
|
delay = 0;
|
|
virtualTextColumn = null;
|
|
extmarkOptions = null;
|
|
};
|
|
};
|
|
}
|