mirror of
https://github.com/kogakure/dotfiles.git
synced 2026-02-03 20:25:30 +00:00
33 lines
602 B
Nix
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;
|
|
}
|
|
];
|
|
};
|
|
};
|
|
};
|
|
}
|