From f12f056e73aeef7d5fe10c16577da220fe62643d Mon Sep 17 00:00:00 2001 From: Joakim Hulthe Date: Mon, 19 Jun 2023 18:42:15 +0200 Subject: [PATCH] nushell: Add .local/bin .cargo/bin to path --- tree/.config/nushell/env.nu | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tree/.config/nushell/env.nu b/tree/.config/nushell/env.nu index 808126e..d85b226 100644 --- a/tree/.config/nushell/env.nu +++ b/tree/.config/nushell/env.nu @@ -75,7 +75,7 @@ let-env NU_PLUGIN_DIRS = [ ] # To add entries to PATH (on Windows you might use Path), you can use the following pattern: -# let-env PATH = ($env.PATH | split row (char esep) | prepend '/some/path') +let-env PATH = ($env.PATH | split row (char esep) | prepend [($env.HOME + "/.local/bin"), ($env.HOME + "/.cargo/bin")]) mkdir ~/.cache/starship starship init nu | save -f ~/.cache/starship/init.nu