feat(yazi): add d drive shortcut

This commit is contained in:
Sweetbread 2025-03-29 15:04:24 +03:00
parent d275bc88b2
commit 8c39e606e3

View File

@ -55,6 +55,11 @@ in {
on = [ "<C-n>" ]; on = [ "<C-n>" ];
run = ''shell '${lib.getExe pkgs.xdragon} -x -i -T "$@"' --confirm''; run = ''shell '${lib.getExe pkgs.xdragon} -x -i -T "$@"' --confirm'';
} }
{
on = [ "g" "<S-d>" ];
run = ''cd /mnt/D'';
desc = "Goto D drive";
}
]; ];
}; };
}; };