aboutsummaryrefslogtreecommitdiff
path: root/home/programs/eza.nix
blob: fa6c1d4e58dae5147414ee21448ecb9e16b23ee4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ ... }:
{
  programs.eza = {
    enable = true;
    icons = "always";
    colors = "always";
    git = true;
    enableFishIntegration = true;
    extraOptions = [
      "--git-ignore"
      "--group-directories-first"
      "--hyperlink"
      "--no-quotes"
    ];
  };

  programs.fish.shellAliases = {
    llt = "eza --sort=modified -l";
    llta = "eza --sort=modified -la";
  };
}