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 = { vim.lazy.plugins.undotree = {
package = "undotree"; package = "undotree";
cmd = [ cmd = [ "UndotreeToggle" ];
"UndotreeToggle"
"UndotreeShow"
"UndotreeHide"
"UndotreePersistUndo"
"UndotreeFocus"
];
}; };
} }

View file

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