1
0
mirror of https://codeberg.org/diginaut/dotfiles.git synced 2026-05-07 02:12:33 +02: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
+1 -1
View File
@@ -132,7 +132,7 @@ echo
echo "Do you wish to install the starship prompt?" echo "Do you wish to install the starship prompt?"
select yn in "Yes" "No"; do select yn in "Yes" "No"; do
case $yn in 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;; No ) break;;
esac esac
done done