From 03ccf57b6ec1614aa25553aeca62130720b06e8d Mon Sep 17 00:00:00 2001 From: Michiel Scholten Date: Fri, 19 Sep 2025 11:44:13 +0200 Subject: [PATCH] Starship prompt has a TOML config file, not yaml --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 9fe7b0e..b3f19e6 100644 --- a/install.sh +++ b/install.sh @@ -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