forked from extern/nix-config
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:
parent
b74d2e386f
commit
bc14409563
@ -14,7 +14,7 @@
|
|||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
wget
|
wget
|
||||||
jq
|
jq
|
||||||
exa
|
eza
|
||||||
fd
|
fd
|
||||||
fzf
|
fzf
|
||||||
ripgrep
|
ripgrep
|
||||||
@ -24,8 +24,8 @@
|
|||||||
enable = true;
|
enable = true;
|
||||||
|
|
||||||
shellAliases = {
|
shellAliases = {
|
||||||
ls = "${pkgs.exa}/bin/exa --icons --group-directories-first --git -I 'lost+found'";
|
ls = "${pkgs.eza}/bin/eza --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'";
|
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";
|
mv = "mv -i";
|
||||||
cp = "cp -ia";
|
cp = "cp -ia";
|
||||||
rg = "${pkgs.ripgrep}/bin/rg --max-columns=2000 --smart-case";
|
rg = "${pkgs.ripgrep}/bin/rg --max-columns=2000 --smart-case";
|
||||||
|
Loading…
Reference in New Issue
Block a user