Files
dotfiles/home/yazi/default.nix
2024-07-31 13:11:51 +02:00

33 lines
602 B
Nix

{ ... }:
{
programs.yazi = {
enable = true;
enableBashIntegration = true;
enableFishIntegration = true;
enableZshIntegration = true;
settings = {
log = {
enabled = false;
};
manager = {
ratio = [ 1 4 3 ];
show_hidden = false;
sort_by = "natural";
sort_dir_first = true;
sort_sensitive = false;
sort_reverse = false;
show_symlink = true;
};
opener = {
edit = [
{
run = "nvim \"$@\"";
block = true;
}
];
};
};
};
}