From c8818cb10498d1a874035984198189fb77ebaf8e Mon Sep 17 00:00:00 2001 From: Donovan Glover Date: Mon, 30 Oct 2023 20:26:26 -0400 Subject: [PATCH] fish(tree): Ignore .direnv directory --- modules/fish.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/fish.nix b/modules/fish.nix index 319ab171..3ebcf4a1 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'"; + 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"; mv = "mv -i"; cp = "cp -ia"; rg = "${pkgs.ripgrep}/bin/rg --max-columns=2000 --smart-case";