Setup

# windows
winget install --id Starship.Starship
Add-Content -Path $PROFILE "Invoke-Expression (&starship init powershell)"

# generic linux
curl -sS https://starship.rs/install.sh | sh
echo 'eval "$(starship init bash)"' >> ~/.bashrc

# arch
pacman -S starship
apt install starship
echo 'starship init fish | source' >> ~/.config/fish/config.fish

# mac 
brew install starship
starship init fish | source
echo 'starship init fish | source' >> ~/.config/fish/config.fish

# other
conda install -c conda-forge starship
curl -sS https://starship.rs/install.sh | sh