fish(exa): Ignore .cache directory

This commit is contained in:
Donovan Glover 2023-08-10 20:37:41 -04:00
parent ade6fa196b
commit f852b9b0c4
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

View File

@ -25,7 +25,7 @@
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'";
tree = "${pkgs.exa}/bin/exa --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";