summary refs log tree commit diff stats
path: root/user/settings/yazi.nix
blob: b80227da4e7e5921ae5377610974f3eaba4ca40b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ pkgs
, ...
}: {
  programs.yazi = {
    enable = true;
    enableFishIntegration = true;
    settings = {
      yazi = {
        manager = {
          sort_by = "natural";
          sort_dir_first = true;
        };
      };
    };
  };
}