plugins/undotree: add tests

This commit is contained in:
Gaetan Lepage 2024-02-14 10:35:58 +01:00 committed by Gaétan Lepage
parent 750ec713dd
commit 47044a551b

View file

@ -0,0 +1,33 @@
{
empty = {
plugins.undotree.enable = true;
};
example = {
plugins.undotree = {
enable = true;
settings = {
WindowLayout = 4;
ShortIndicators = false;
DiffpanelHeight = 10;
DiffAutoOpen = true;
SetFocusWhenToggle = true;
SplitWidth = 40;
TreeNodeShape = "*";
TreeVertShape = "|";
TreeSplitShape = "/";
TreeReturnShape = "\\";
DiffCommand = "diff";
RelativeTimestamp = true;
HighlightChangedText = true;
HighlightChangedWithSign = true;
HighlightSyntaxAdd = "DiffAdd";
HighlightSyntaxChange = "DiffChange";
HighlightSyntaxDel = "DiffDelete";
HelpLine = true;
CursorLine = true;
};
};
};
}