aboutsummaryrefslogblamecommitdiff
path: root/home/programs/eza.nix
blob: fa6c1d4e58dae5147414ee21448ecb9e16b23ee4 (plain) (tree)
1
2
3
4
5
6
7
8
9
        





                      
                                 
                    
                    
                                 
                   
                   


      
                                

                                     

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