Source: https://bleepcoder.com/starship/640385008/unable-to-install-on-windows-git-bash-configuration-not
All scripts should be ran in your git bash terminal, not cmd or ps.
- Make/Choose folder where to install:
mkdir -p ~/bin/starship && cd ~/bin
- Download the install script:
curl -fsSL https://starship.rs/install.sh > ./install.sh
- Run install script:
./install.sh --bin-dir /c/Users/<username>/bin/starship/ --platform pc-windows-msvc
- Finally add the following to the end of your .bashrc file:
# ~/.bashrc
...
export PATH=$PATH:"/c/Users/<username>/bin/starship"
eval "$(starship init bash)"
Relaunch git bash terminal