mirror of
https://github.com/nix-community/nixvim.git
synced 2025-11-17 16:02:48 +01:00
26 lines
459 B
Nix
26 lines
459 B
Nix
{
|
|
empty = {
|
|
plugins.tardis.enable = true;
|
|
};
|
|
|
|
example = {
|
|
plugins.tardis = {
|
|
enable = true;
|
|
|
|
settings = {
|
|
keymap = {
|
|
next = "<C-j>";
|
|
prev = "<C-k>";
|
|
quit = "q";
|
|
revision_message = "<C-m>";
|
|
commit = "<C-g>";
|
|
};
|
|
settings = {
|
|
initial_revisions = 10;
|
|
max_revisions = 256;
|
|
show_commit_index = false;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|