Files
nix-dotfiles/home/programs/yazi.nix
2025-06-04 12:01:57 +02:00

22 lines
408 B
Nix

{ ... }:
{
programs.yazi = {
keymap = {
manager.prepend_keymap = [
{
run = "quit --no-cwd-file";
on = [ "<Esc>" ];
desc = "Quit without outputting cwd-file";
}
];
pick.prepend_keymap = [
{
run = "close";
on = [ "<Esc>" ];
desc = "Quit without submitting the picker";
}
];
};
};
}