Merge branch 'main' into plugin/nvim-biscuits

This commit is contained in:
raf 2025-07-24 18:23:34 +00:00 committed by GitHub
commit 00d04a4c06
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,12 +1,22 @@
{
vim.lazy.plugins.undotree = {
package = "undotree";
cmd = [
"UndotreeToggle"
"UndotreeShow"
"UndotreeHide"
"UndotreePersistUndo"
"UndotreeFocus"
];
lib,
config,
...
}: let
inherit (lib.modules) mkIf;
cfg = config.vim.utility.undotree;
in {
config = mkIf cfg.enable {
vim.lazy.plugins.undotree = {
package = "undotree";
cmd = [
"UndotreeToggle"
"UndotreeShow"
"UndotreeHide"
"UndotreePersistUndo"
"UndotreeFocus"
];
};
};
}