22 lines
651 B
Plaintext
22 lines
651 B
Plaintext
|
|
#!/usr/bin/env nu
|
||
|
|
# Lightweight entry point for interactive nu sessions
|
||
|
|
# Skips heavy module loading to start the prompt quickly
|
||
|
|
|
||
|
|
# This script is loaded but doesn't execute - the shell continues interactively
|
||
|
|
# The export-env block runs during initialization
|
||
|
|
|
||
|
|
export-env {
|
||
|
|
$env.NU_LIB_DIRS = [
|
||
|
|
"/Users/Akasha/project-provisioning/provisioning/core/nulib",
|
||
|
|
"/opt/provisioning/core/nulib",
|
||
|
|
"/usr/local/provisioning/core/nulib"
|
||
|
|
]
|
||
|
|
$env.PROVISIONING = "/Users/Akasha/project-provisioning/provisioning"
|
||
|
|
}
|
||
|
|
|
||
|
|
# Load only essential utilities
|
||
|
|
use lib_provisioning *
|
||
|
|
|
||
|
|
print "✓ Provisioning interactive shell ready"
|
||
|
|
print ""
|