14 lines
427 B
PowerShell
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'
|
|
]
|
|
'@
|