meta: Replace exa with eza

exa hasn't been updated in a few years and has noticeable bugs such as
columns not working when the terminal is large enough that multiple
columns can show.
This commit is contained in:
Donovan Glover 2023-08-10 22:22:47 -04:00
parent b74d2e386f
commit bc14409563
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

View File

@ -14,7 +14,7 @@
environment.systemPackages = with pkgs; [
wget
jq
exa
eza
fd
fzf
ripgrep
@ -24,8 +24,8 @@
enable = true;
shellAliases = {
ls = "${pkgs.exa}/bin/exa --icons --group-directories-first --git -I 'lost+found'";
tree = "${pkgs.exa}/bin/exa --icons --group-directories-first --all --long --tree --git -I 'node_modules|.git|public|lost+found|target|.next|.cache'";
ls = "${pkgs.eza}/bin/eza --icons --group-directories-first --git -I 'lost+found'";
tree = "${pkgs.eza}/bin/eza --icons --group-directories-first --all --long --tree --git -I 'node_modules|.git|public|lost+found|target|.next|.cache'";
mv = "mv -i";
cp = "cp -ia";
rg = "${pkgs.ripgrep}/bin/rg --max-columns=2000 --smart-case";