feat(nushell): add nu_libs autoload package
Some checks failed
Public Repo Readiness / Check Public Repo Readiness (push) Has been cancelled

fix(notgraph): replace sort_by with sort_by_key (clippy)
This commit is contained in:
2026-06-14 00:19:21 -04:00
parent 50ff598684
commit 02ed15d6ee
2 changed files with 13 additions and 2 deletions

View File

@@ -0,0 +1,10 @@
# nu_libs — load all lib/* modules on shell startup
# Managed by notfiles (nushell package). Link with: notfiles link nushell
# lib/ai is excluded from lib/mod.nu (requires runtime deps) — loaded separately below.
# lib/extensions is excluded (requires external project repos) — load manually as needed.
const NU_LIBS = "/Users/joe/dev/nu_libs/lib/mod.nu"
const NU_LIBS_AI = "/Users/joe/dev/nu_libs/lib/ai/mod.nu"
use $NU_LIBS *
use $NU_LIBS_AI *