mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 08:35:43 +02:00
plugins/gitblame: init + test (#590)
This commit is contained in:
parent
9e6892e839
commit
358f5732f2
3 changed files with 84 additions and 0 deletions
19
tests/test-sources/plugins/git/gitblame.nix
Normal file
19
tests/test-sources/plugins/git/gitblame.nix
Normal file
|
@ -0,0 +1,19 @@
|
|||
{
|
||||
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;
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue