Compare commits

...

3 commits

Author SHA1 Message Date
Abhirath A
4847c099eb
utility/undotree: added description to enable
Co-authored-by: raf <raf@notashelf.dev>
2025-07-20 05:39:51 -04:00
Abhirath A
60dd59ecae
utility/undotree: removed unnecessary lazy inputs
Co-authored-by: raf <raf@notashelf.dev>
2025-07-20 05:39:20 -04:00
Abhi
1bb9454933
utility/undotree: added extra commands to lazy loader 2025-07-19 23:14:01 -04:00
2 changed files with 8 additions and 3 deletions

View file

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

View file

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