1
0
forked from extern/nix-config

fish: Add target to tree ignore

This prevents the directory listing from becoming abnormally large with
rust projects.
This commit is contained in:
Donovan Glover 2023-06-16 13:37:34 -04:00
parent b12e1598c9
commit c23655ad39
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

View File

@ -18,7 +18,7 @@ let VARIABLES = import ../../src/variables.nix; in {
shellAliases = {
ls = "${pkgs.exa}/bin/exa --group-directories-first -I 'lost+found'";
tree = "${pkgs.exa}/bin/exa --group-directories-first --all --long --tree -I 'node_modules|.git|public|lost+found'";
tree = "${pkgs.exa}/bin/exa --group-directories-first --all --long --tree -I 'node_modules|.git|public|lost+found|target'";
mv = "mv -i";
cp = "cp -ia";
rg = "${pkgs.ripgrep}/bin/rg --max-columns=2000 --smart-case";