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

  programs.fish.shellAliases = {
    la = "eza -la";
    ll = "eza -la -L=1";
    lt = "eza -aT -L=2";
  };
}