aboutsummaryrefslogtreecommitdiff
path: root/home/profiles/eza.nix
blob: f71b9b6ffbee0580b25e7529199f523a4bcf9bf1 (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 = "never";
    colors = "always";
    git = true;
    enableFishIntegration = false;
    extraOptions = [
      "--group-directories-first"
      "--no-quotes"
      "--git-ignore"
      "--icons=never"
    ];
  };

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