aboutsummaryrefslogblamecommitdiff
path: root/home/profiles/eza.nix
blob: 095220176227c6cb657d033fb04e5d535db9bdd2 (plain) (tree)
1
2
3
4
5
6
7
8



                  
                   

                      
                            




                                  



                                


                        

    
{ ... }:
{
  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";
  };
}