nix-community.nixvim/tests/test-sources/plugins/by-name/undotree/default.nix

34 lines
780 B
Nix
Raw Normal View History

2024-02-14 10:35:58 +01:00
{
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;
};
};
};
}