NuShell Installation
Installation
On windows:
bash
winget install nushell
1
Run nu
to enter NuShell.
INFO
For more installation, see: Installing Nu
Integrates with VSCode
Add new profile in settings.json
.
json
{
"terminal.integrated.profiles.windows": {
"NuShell": {
"path": "C:\\Program Files\\nu\\bin\\nu.exe",
"overrideName": true
}
},
}
1
2
3
4
5
6
7
8
2
3
4
5
6
7
8
To use NuShell as default integrated shell, value should coherent to profile name.
json
{
"terminal.integrated.defaultProfile.windows": "NuShell"
}
1
2
3
2
3
Integrates with Windows Terminal
INFO
Windows Terminal will automatically register a profile for NuShell
Configuration
Unlike bash
, nu
separates environment variables and start up scripts into two files: env.nu
and config.nu
.