Compare commits

..

No commits in common. "4847c099ebceacb073b2cddfb0c0e41fe75ea84d" and "861d6f3ed7d68b16381b9893ec6603e9e30ed6d3" have entirely different histories.

2 changed files with 3 additions and 8 deletions

View file

@ -1,12 +1,7 @@
{ ... }:
{
vim.lazy.plugins.undotree = {
package = "undotree";
cmd = [
"UndotreeToggle"
"UndotreeShow"
"UndotreeHide"
"UndotreePersistUndo"
"UndotreeFocus"
];
cmd = [ "UndotreeToggle" ];
};
}

View file

@ -4,6 +4,6 @@ let
in
{
options.vim.undotree = {
enable = mkEnableOption "undo history visualizer for Vim [undotree]";
enable = mkEnableOption "undotree";
};
}