Nushell
- This stuff is legendary :)
Install | Debian
Bash
curl -fsSL https://apt.fury.io/nushell/gpg.key | sudo gpg --dearmor -o /etc/apt/trusted.gpg.d/fury-nushell.gpg
echo "deb https://apt.fury.io/nushell/ /" | sudo tee /etc/apt/sources.list.d/fury.list
sudo apt update
sudo apt install nushell
- Should work when typing
nu
Install Carapace
For autocompleting commands (docker, kubectl ect...)
- add and install
- Configuration for nushell:
Bash
## ~/.config/nushell/env.nu
$env.CARAPACE_BRIDGES = 'zsh,fish,bash,inshellisense' # optional
mkdir ~/.cache/carapace
carapace _carapace nushell | save --force ~/.cache/carapace/init.nu
Bash
#~/.config/nushell/config.nu
# load carapace
source ~/.cache/carapace/init.nu
# setup editor when typing config nu
$env.EDITOR = 'nano'
Install Starship
- Configure
Add the following to the end of your Nushell configuration (find it by running $nu.config-path
in Nushell):