mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-23 01:08:43 +02:00
34 lines
780 B
Nix
34 lines
780 B
Nix
|
{
|
||
|
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;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|