Files
win-vagrant/scripts/setup-nu.ps1
2026-06-05 13:31:10 +02:00

14 lines
427 B
PowerShell

# Invoke nu to ensure that the `env.nu` file exists
nu --login --commands "echo 'hello from nu'"
# TODO: consider adding these using regedit or something
Add-Content -Path "$HOME/AppData/Roaming/nushell/env.nu" -Value @'
$env.PATH ++= [
'C:\Program Files (x86)\Microsoft Visual Studio\18\BuildTools\MSBuild\Current\Bin'
'C:\ProgramData\chocolatey\bin'
'C:\Program Files\Git\cmd'
'C:\Program Files\Volta'
]
'@