From 85766665f852fce06261c88a36ba399a33bb7073 Mon Sep 17 00:00:00 2001 From: Donovan Glover Date: Tue, 31 Oct 2023 11:40:03 -0400 Subject: [PATCH] fish(tree): Ignore .vercel directory Necessary for Next.js projects. --- modules/fish.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/fish.nix b/modules/fish.nix index d9c77f7b..7a8a3c72 100644 --- a/modules/fish.nix +++ b/modules/fish.nix @@ -26,7 +26,7 @@ shellAliases = { 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"; cp = "cp -ia"; rg = "${pkgs.ripgrep}/bin/rg --max-columns=2000 --smart-case";