From c0a0c644259dbcd6c5a430d0eb5c49056f96b251 Mon Sep 17 00:00:00 2001 From: Greg Hellings Date: Mon, 6 Apr 2026 16:50:06 -0500 Subject: [PATCH] feat: add ~/.local/bin/ to nushell PATH --- home/baseline/nushell/functions.nu | 1 + 1 file changed, 1 insertion(+) diff --git a/home/baseline/nushell/functions.nu b/home/baseline/nushell/functions.nu index d7ca3ae..288397a 100644 --- a/home/baseline/nushell/functions.nu +++ b/home/baseline/nushell/functions.nu @@ -72,3 +72,4 @@ def dc [ $cmd: string = "sh" ] { if ("/usr/local/bin" | path exists) { $env.PATH = $env.PATH | append "/usr/local/bin" } +$env.PATH = $env.PATH | prepend "~/.local/bin"