1
0
mirror of https://github.com/aquatix/dotfiles.git synced 2025-12-06 20:35:11 +01:00

Starship prompt has a TOML config file, not yaml

This commit is contained in:
2025-09-19 11:44:13 +02:00
parent c2c06a46e4
commit 03ccf57b6e

View File

@@ -132,7 +132,7 @@ echo
echo "Do you wish to install the starship prompt?"
select yn in "Yes" "No"; do
case $yn in
Yes ) make_link $DIR ".config/starship.yml"; curl -sS https://starship.rs/install.sh | sh; break;;
Yes ) make_link $DIR ".config/starship.toml"; curl -sS https://starship.rs/install.sh | sh; break;;
No ) break;;
esac
done