From 43e0439341ff413adbbde5f1cc408666caec198d Mon Sep 17 00:00:00 2001 From: RGBCube Date: Sat, 12 Jul 2025 17:50:15 +0300 Subject: [PATCH] nushell: don't print ls on new cd --- modules/common/nushell/config.nu | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/modules/common/nushell/config.nu b/modules/common/nushell/config.nu index e11c3c7..75f25e3 100644 --- a/modules/common/nushell/config.nu +++ b/modules/common/nushell/config.nu @@ -138,12 +138,7 @@ $env.config.hooks.pre_execution = [ } ] -$env.config.hooks.env_change.PWD = [ - {|_before, after| - ls $after - | if ($in | length) < 20 { print } - } -] +$env.config.hooks.env_change = {} $env.config.hooks.display_output = {|| tee { table --expand | print }