From f852b9b0c43328ce359f38f8492fead630200040 Mon Sep 17 00:00:00 2001 From: Donovan Glover Date: Thu, 10 Aug 2023 20:37:41 -0400 Subject: [PATCH] fish(exa): Ignore .cache directory --- modules/fish.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/fish.nix b/modules/fish.nix index ea33512f..20ff63bb 100644 --- a/modules/fish.nix +++ b/modules/fish.nix @@ -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";