From 2c370d75d1e4b23b3cef644ecf3e07e3be378ad9 Mon Sep 17 00:00:00 2001 From: Donovan Glover Date: Wed, 9 Aug 2023 09:16:05 -0400 Subject: [PATCH] fish(tree): Ignore .next directory --- modules/fish.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/fish.nix b/modules/fish.nix index 3565f831..23ad2d5c 100644 --- a/modules/fish.nix +++ b/modules/fish.nix @@ -25,7 +25,7 @@ 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|target'"; + tree = "${pkgs.exa}/bin/exa --group-directories-first --all --long --tree -I 'node_modules|.git|public|lost+found|target|.next'"; mv = "mv -i"; cp = "cp -ia"; rg = "${pkgs.ripgrep}/bin/rg --max-columns=2000 --smart-case";