fish(tree): Ignore .vercel directory

Necessary for Next.js projects.
This commit is contained in:
Donovan Glover 2023-10-31 11:40:03 -04:00
parent 5ee4d32229
commit 85766665f8
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

View File

@ -26,7 +26,7 @@
shellAliases = { shellAliases = {
ls = "${pkgs.eza}/bin/eza --icons --group-directories-first -I 'lost+found'"; ls = "${pkgs.eza}/bin/eza --icons --group-directories-first -I 'lost+found'";
tree = "${pkgs.eza}/bin/eza --icons --group-directories-first --all --long --tree -I 'node_modules|.git|public|lost+found|target|.next|.cache|.nuxt|themes|.direnv|.wrangler'"; tree = "${pkgs.eza}/bin/eza --icons --group-directories-first --all --long --tree -I 'node_modules|.git|public|lost+found|target|.next|.cache|.nuxt|themes|.direnv|.wrangler|.vercel'";
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";