From d16f786da321c0ee56a1f3a4b85c56317d1d8d5f Mon Sep 17 00:00:00 2001 From: Joakim Hulthe Date: Tue, 9 Apr 2024 17:48:30 +0200 Subject: [PATCH] nu: Add ~/.radicle/bin to path --- tree/.config/nushell/env.nu | 1 + 1 file changed, 1 insertion(+) diff --git a/tree/.config/nushell/env.nu b/tree/.config/nushell/env.nu index 33a336f..d12d6b4 100644 --- a/tree/.config/nushell/env.nu +++ b/tree/.config/nushell/env.nu @@ -81,6 +81,7 @@ $env.NU_PLUGIN_DIRS = [ $env.PATH = ($env.PATH | split row (char esep) | prepend [ ($env.HOME + "/.local/bin"), ($env.HOME + "/.cargo/bin"), + ($env.HOME + "/.radicle/bin"), ($env.HOME + "/.volta/bin"), ])