mirror of
https://github.com/szymon-jozef/amazing-dotfiles.git
synced 2026-09-07 20:20:43 +02:00
33 lines
609 B
Nix
33 lines
609 B
Nix
{ ... }:
|
|
|
|
{
|
|
programs.yazi = {
|
|
enable = true;
|
|
enableFishIntegration = true;
|
|
shellWrapperName = "y";
|
|
settings = {
|
|
mgr = {
|
|
ratio = [
|
|
1
|
|
4
|
|
3
|
|
];
|
|
sort_by = "alphabetical";
|
|
sort_sensitive = false;
|
|
sort_reverse = false;
|
|
sort_dir_first = true;
|
|
sort_translit = false;
|
|
linemode = "none";
|
|
show_hidden = false;
|
|
show_symlink = true;
|
|
scrolloff = 5;
|
|
mouse_events = [
|
|
"click"
|
|
"scroll"
|
|
];
|
|
title_format = "Yazi: {cwd}";
|
|
};
|
|
};
|
|
};
|
|
}
|