From fd1baa7f867e3e14c4e051af036367b6fca5608f Mon Sep 17 00:00:00 2001 From: Cian Hughes Date: Mon, 11 Aug 2025 11:12:56 +0100 Subject: [PATCH] Fix to `zoxide.nu` --- dot_config/nushell/completions/zoxide.nu | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dot_config/nushell/completions/zoxide.nu b/dot_config/nushell/completions/zoxide.nu index c247196..ebbddc7 100644 --- a/dot_config/nushell/completions/zoxide.nu +++ b/dot_config/nushell/completions/zoxide.nu @@ -7,7 +7,7 @@ # Initialize hook to add new entries to the database. if (not ($env | default false __zoxide_hooked | get __zoxide_hooked)) { - $env.__zoxide_hooked = true + $env.__zoxide_hooked = 1 $env.config = ($env | default {} config).config $env.config = ($env.config | default {} hooks) $env.config = ($env.config | update hooks ($env.config.hooks | default {} env_change))