From 5ee4d32229136c70ce5bb62f6a2a47f89d5f6d59 Mon Sep 17 00:00:00 2001 From: Donovan Glover Date: Tue, 31 Oct 2023 11:36:28 -0400 Subject: [PATCH] fish(tree): Ignore .wrangler directory There's usually nothing in this folder except an empty tmp directory, so it should be safe to ignore. --- modules/fish.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/fish.nix b/modules/fish.nix index 3ebcf4a1..d9c77f7b 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"; + 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'"; mv = "mv -i"; cp = "cp -ia"; rg = "${pkgs.ripgrep}/bin/rg --max-columns=2000 --smart-case";