From 917b7d626a4b49f1c5c9f2f06f8359a41f994756 Mon Sep 17 00:00:00 2001 From: Donovan Glover Date: Sat, 19 Aug 2023 22:15:53 -0400 Subject: [PATCH] fish(eza): Ignore .nuxt directory --- modules/fish.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/fish.nix b/modules/fish.nix index 6cdde3f..a4a44f3 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'"; + tree = "${pkgs.eza}/bin/eza --icons --group-directories-first --all --long --tree -I 'node_modules|.git|public|lost+found|target|.next|.cache|.nuxt'"; mv = "mv -i"; cp = "cp -ia"; rg = "${pkgs.ripgrep}/bin/rg --max-columns=2000 --smart-case";