Initial commit

This commit is contained in:
2026-06-05 13:31:10 +02:00
commit b2d9581c25
12 changed files with 1006 additions and 0 deletions

13
scripts/setup-nu.ps1 Normal file
View File

@@ -0,0 +1,13 @@
# 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'
]
'@