pantheon/modules/home/cli/file-browser/default.nix

22 lines
469 B
Nix

{ config, lib, ... }:
{
config = lib.mkIf (config.cli.file-browser == "yazi") {
home.sessionVariables.FILE_BROWSER = "yazi";
programs.yazi = {
enable = true;
shellWrapperName = "t";
settings = {
manager = {
sort_by = "natural";
prepend_keymap = [
{
on = "l";
run = "plugin smart-enter";
desc = "";
}
];
};
};
};
};
}